Skip to content

Commit

Permalink
Merge pull request #3172 from phpDocumentor/feature/ast-dsl
Browse files Browse the repository at this point in the history
Query engine for AST
  • Loading branch information
jaapio committed Apr 3, 2022
2 parents dae5701 + 57645ea commit 15ada9b
Show file tree
Hide file tree
Showing 47 changed files with 4,868 additions and 270 deletions.
2 changes: 1 addition & 1 deletion composer-require-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"null", "true", "false",
"static", "self", "parent",
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
"array_key_last",
"array_key_last", "str_starts_with",
"Composer\\Autoload\\ClassLoader",
"League\\Uri\\Exceptions\\SyntaxError",
"PackageVersions\\Versions"
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
},
"autoload-dev": {
"psr-4": {
"phpDocumentor\\JsonPath\\" : [
"incubator/json-path/tests/unit/"
],
"phpDocumentor\\": [
"tests/unit/phpDocumentor/",
"tests/integration/phpDocumentor/",
Expand All @@ -24,7 +27,8 @@
"repositories": [
{ "type": "path", "url": "incubator/guides" },
{ "type": "path", "url": "incubator/guides-restructured-text" },
{ "type": "path", "url": "incubator/guides-markdown" }
{ "type": "path", "url": "incubator/guides-markdown" },
{ "type": "path", "url": "incubator/json-path" }
],
"require": {
"php": "^7.4.0||^8.0",
Expand All @@ -49,6 +53,7 @@
"phpdocumentor/guides": "*@dev",
"phpdocumentor/guides-markdown": "*@dev",
"phpdocumentor/guides-restructured-text": "*@dev",
"phpdocumentor/json-path": "*@dev",
"phpdocumentor/reflection": "^5.1",
"phpdocumentor/reflection-common": "^2.0",
"phpdocumentor/reflection-docblock": "^5.0",
Expand Down

0 comments on commit 15ada9b

Please sign in to comment.