Skip to content

Commit d406d96

Browse files
committed
First draft of PhpParser
0 parents  commit d406d96

File tree

12 files changed

+3658
-0
lines changed

12 files changed

+3658
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
vendor
2+
var
3+
!var/**/.gitkeep
4+
.phpunit.result.cache

composer.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"require": {
3+
"symfony/console": "^5.2",
4+
"php-di/php-di": "^6.3",
5+
"beberlei/assert": "^3.3",
6+
"danielstjules/stringy": "^3.1",
7+
"roave/better-reflection": "^4.12",
8+
"phpdocumentor/reflection-docblock": "^5.2"
9+
},
10+
"autoload": {
11+
"psr-4": {
12+
"App\\": "src/",
13+
"App\\Tests\\": "tests/"
14+
}
15+
},
16+
"require-dev": {
17+
"phpunit/phpunit": "^9.5"
18+
}
19+
}

0 commit comments

Comments
 (0)