mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-26 20:14:46 +01:00
c8898df3dd
Renaming from php-parse.php to just php-parse to follow the usual conventions. Not tested.
31 lines
613 B
JSON
31 lines
613 B
JSON
{
|
|
"name": "nikic/php-parser",
|
|
"description": "A PHP parser written in PHP",
|
|
"keywords": ["php", "parser"],
|
|
"type": "library",
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Nikita Popov"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.4",
|
|
"ext-tokenizer": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"PhpParser\\": "lib/PhpParser"
|
|
}
|
|
},
|
|
"bin": ["bin/php-parse"],
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0-dev"
|
|
}
|
|
}
|
|
}
|