-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.71 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": "agarwood/core",
"type": "library",
"description": "Agarwood-Cloud MicroService Business Core Code",
"license": "proprietary",
"homepage": "https://github.com/agarwood-cloud/agarwood.cloud.core.provider.git",
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"overtrue/wechat": "^5.16",
"swoft/db": "~2.0.0",
"swoft/framework": "~2.0.0",
"swoft/http-server": "~2.0.0",
"swoft/i18n": "~2.0.0",
"swoft/process": "~2.0.0",
"swoft/redis": "~2.0.0",
"swoft/rpc-client": "~2.0.0",
"swoft/rpc-server": "~2.0.0",
"swoft/task": "~2.0.0",
"yurunsoft/guzzle-swoole": "^2.2"
},
"require-dev": {
"swoft/devtool": "~2.0.0",
"roave/security-advisories": "dev-master",
"swoft/swoole-ide-helper": "dev-master",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Agarwood\\Core\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Agarwood\\CoreTest\\Testing\\": "./test/testing",
"Agarwood\\CoreTest\\Unit\\": "./test/unit"
}
},
"scripts": {
"post-root-package-install": [
],
"test": [
"./vendor/bin/phpstan analyze",
"./vendor/bin/phpunit -c phpunit.xml"
],
"check-cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff --diff-format=udiff",
"cs-fix": "./vendor/bin/php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"yurunsoft/composer-include-files": true,
"yurunsoft/guzzle-swoole": true,
"easywechat-composer/easywechat-composer": true
}
}
}