-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.13 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"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",
"symfony/console": "^6.0 | ^7.0",
"nikic/php-parser": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"friendsofphp/php-cs-fixer": "^3.40",
"symfony/var-dumper": "^6.0 | ^7.0"
},
"autoload": {
"psr-4": {
"python\\": "lib/python",
"PhpyTool\\": "tools/src"
},
"classmap": [
"lib/phpy"
],
"files": [
"lib/phpy/facade.php"
]
},
"bin": [
"bin/phpy"
],
"suggest": {
"ext-phpy": "Required for the library to work. "
},
"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"
}
}