Skip to content

Commit 9cee1e1

Browse files
committed
Update namespace
1 parent cc9f6be commit 9cee1e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+159
-141
lines changed

composer.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
2-
"name": "devtheorem/handlebars.php",
3-
"description": "Parse and render Handlebars templates with PHP.",
2+
"name": "devtheorem/handlebars-parser",
3+
"description": "Parse Handlebars templates to a spec-compliant AST with PHP.",
4+
"keywords": [
5+
"Handlebars",
6+
"PHP",
7+
"template",
8+
"parse",
9+
"AST"
10+
],
411
"type": "library",
512
"license": "MIT",
613
"authors": [
@@ -20,12 +27,12 @@
2027
},
2128
"autoload": {
2229
"psr-4": {
23-
"DevTheorem\\Handlebars\\": "src/"
30+
"DevTheorem\\HandlebarsParser\\": "src/"
2431
}
2532
},
2633
"autoload-dev": {
2734
"psr-4": {
28-
"DevTheorem\\Handlebars\\Test\\": "tests/"
35+
"DevTheorem\\HandlebarsParser\\Test\\": "tests/"
2936
}
3037
},
3138
"scripts": {

composer.lock

Lines changed: 61 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Ast/ArrayLiteral.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DevTheorem\Handlebars\Ast;
3+
namespace DevTheorem\HandlebarsParser\Ast;
44

55
class ArrayLiteral extends Literal
66
{

src/Ast/BlockStatement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DevTheorem\Handlebars\Ast;
3+
namespace DevTheorem\HandlebarsParser\Ast;
44

55
class BlockStatement extends Statement
66
{

src/Ast/BooleanLiteral.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DevTheorem\Handlebars\Ast;
3+
namespace DevTheorem\HandlebarsParser\Ast;
44

55
class BooleanLiteral extends Literal
66
{

0 commit comments

Comments
 (0)