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.
22 lines
442 B
22 lines
442 B
{
|
|
"require": {
|
|
"nikic/php-parser": "^5.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.4",
|
|
"friendsofphp/php-cs-fixer": "^3.40"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"PhpAot\\": "src"
|
|
},
|
|
"files": [
|
|
"src/functions.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"cs-fix": "php-cs-fixer fix $1",
|
|
"analyse": "phpstan analyse --memory-limit 512M -l 5 -c phpstan.neon",
|
|
"rector": "rector process --clear-cache"
|
|
}
|
|
}
|
|
|