mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-20 17:18:51 +02:00
We were on v3 that is no longer maintained and compatibility is annonced for PHP 7.2. v4 is active and supports PHP up to 8.0 No problem to update as this is only used in the config editor (\Combodo\iTop\Config\Validator\iTopConfigAstValidator)
42 lines
816 B
JSON
42 lines
816 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 || ^8.0 || ^9.0",
|
|
"ircmaxell/php-yacc": "^0.0.7"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "4.9-dev"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"PhpParser\\": "lib/PhpParser"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"PhpParser\\": "test/PhpParser/"
|
|
}
|
|
},
|
|
"bin": [
|
|
"bin/php-parse"
|
|
]
|
|
}
|