-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.56 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "he426100/think-swow",
"description": "Swow extend for thinkphp",
"license": "Apache-2.0",
"authors": [
{
"name": "liu21st",
"email": "[email protected]"
},
{
"name": "mrpzx001",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"nesbot/carbon": "^3.5",
"swow/swow": "^1.5",
"topthink/framework": "^6.1|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^4.3|^5.1"
},
"autoload": {
"psr-4": {
"think\\swow\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"think\\tests\\swow\\": "tests/"
}
},
"extra": {
"think": {
"services": [
"think\\swow\\Service"
],
"config": {
"swow": "src/config/swow.php"
}
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform-check": false,
"platform": {
"ext-fileinfo": "1.0.4"
}
},
"scripts": {
"analyse": "@php vendor/bin/phpstan analyse --memory-limit 512M -l 0 -c phpstan.neon ./src",
"cs-fix": "@php vendor/bin/php-cs-fixer fix $1",
"test": "@php vendor/bin/phpunit -c phpunit.xml --colors=always"
}
}