-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 944 Bytes
/
composer.json
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
{
"name": "matyhtf/framework",
"description": "SPF",
"type": "framework",
"keywords": [
"swoole",
"framework"
],
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"SPF\\": "src/core"
},
"files": [
"src/helper/functions.php"
]
},
"authors": [
{
"name": "Tianfeng Han",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"filp/whoops": "^2.2",
"symfony/console": "^5.4",
"ext-swoole": ">=4.8",
"ext-pdo": "*",
"ext-mysqli": "*",
"swoole/ide-helper": "4.8.*",
"vlucas/phpdotenv": "^5.5",
"corneltek/getoptionkit": "^2.7",
"ext-posix": "*"
},
"require-dev": {
"phpunit/phpunit": "8.5.x-dev",
"friendsofphp/php-cs-fixer": "^2.1"
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"check-style": "vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run"
}
}