mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-30 04:19:30 +01:00
b7e6361536
- "global" -> remove unused "use" statements - "phpunit" -> fix "@covers" comments - "phpunit" -> replace "->will($this->returnValue()" with "->willReturn()" - "UseTest.php" -> add missing namespace - "composer.json" -> use "autoload-dev" - remove -> "require_once" usage in the tests (use autoload-dev via composer.json) -> most of the changes are done automatically by "https://github.com/rectorphp/rector"
41 lines
760 B
JSON
41 lines
760 B
JSON
{
|
|
"name": "nikic/php-parser",
|
|
"type": "library",
|
|
"description": "A PHP parser written in PHP",
|
|
"keywords": [
|
|
"php",
|
|
"parser"
|
|
],
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Nikita Popov"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"ext-tokenizer": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.5 || ^7.0"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "4.2-dev"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"PhpParser\\": "lib/PhpParser"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"PhpParser\\": "test/PhpParser/"
|
|
}
|
|
},
|
|
"bin": [
|
|
"bin/php-parse"
|
|
]
|
|
}
|