mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 00:42:11 +01:00
32 lines
821 B
JSON
32 lines
821 B
JSON
{
|
|
"name": "swoole/phpy",
|
|
"type": "library",
|
|
"keywords": [
|
|
"php",
|
|
"python",
|
|
"ai"
|
|
],
|
|
"description": "Connecting the Python and PHP ecosystems together",
|
|
"license": "Apache-2.0",
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"ext-phpy": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.4",
|
|
"friendsofphp/php-cs-fixer": "^3.40"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"python\\": "./lib/python",
|
|
"PhpyTool\\": "tools/src"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit --bootstrap tests/bootstrap.php -c phpunit.xml --colors=always",
|
|
"cs-fix": "php-cs-fixer fix $1",
|
|
"analyse": "phpstan analyse --memory-limit 512M -l 5 -c phpstan.neon",
|
|
"rector": "rector process --clear-cache"
|
|
}
|
|
}
|