TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
593 B
26 lines
593 B
{
|
|
"require": {
|
|
"php": ">=8.2 <8.6",
|
|
"ext-pcntl": "*",
|
|
"nikic/php-parser": "5.6.1",
|
|
"league/climate": "^3.10",
|
|
"marcj/topsort": "^2.0",
|
|
"symfony/var-dumper": "^8.0",
|
|
"symfony/yaml": "^8.0",
|
|
"swoole/phpx": "~2.1.5"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.4",
|
|
"friendsofphp/php-cs-fixer": "^3.40"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"PhpAot\\": "src"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"cs-fix": "php-cs-fixer fix $1",
|
|
"analyse": "phpstan analyse --memory-limit 512M -l 5 -c phpstan.neon",
|
|
"rector": "rector process --clear-cache"
|
|
}
|
|
}
|
|
|