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.
 
 

35 lines
814 B

{
"name": "swoole/typephp",
"description": "TypePHP native AOT compiler",
"type": "library",
"bin": [
"bin/tpc.php"
],
"require": {
"php": ">=8.4 <8.6",
"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.4.6",
"ajaxray/ansikit": "^0.3.1"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"friendsofphp/php-cs-fixer": "^3.40"
},
"autoload": {
"psr-4": {
"TypePhp\\": "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"
},
"suggest": {
"ext-pcntl": "Required for process control features."
}
}