forked from swoole/phpx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 853 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 853 Bytes
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
{
"name": "swoole/phpx",
"type": "library",
"keywords": [
"php",
"ZendAPI",
"extension",
"embedded"
],
"description": "C++ wrapper for Zend API",
"license": "Apache-2.0",
"require-dev": {
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.75"
},
"autoload": {
"psr-4": {
"Phpx\\": "src/php"
}
},
"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",
"phpx": "phpx $1"
},
"require": {
"php": ">=8.4 <8.6",
"league/climate": "^3.10",
"marcj/topsort": "^2.0"
}
}