-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
61 lines (61 loc) · 1.61 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
{
"name" : "pifeifei/jingdong-jos-api-sdk",
"description": "jingdong aces php sdk",
"keywords": [
"jingdong",
"api",
"jos",
"sdk"
],
"license": "GPL-2.0-only",
"autoload" : {
"psr-4" : {
"ACES\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ACESTest\\": "tests"
}
},
"require" : {
"php": ">=8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"composer/ca-bundle": "^1.3",
"guzzlehttp/guzzle": "^6.5|^7.0",
"monolog/monolog": "^1.24.0|^2.0|^3.0",
"netresearch/jsonmapper": "^1.6.0|^2.0|^3.0|^4.0",
"psr/simple-cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"symfony/finder": "^5.4|^6.0",
"symfony/var-dumper": "^5.4|^6.0"
},
"scripts": {
"phpstan": "phpstan analyse --memory-limit=-1",
"check-style": "php-cs-fixer fix --using-cache=no --diff --dry-run --allow-risky=yes --ansi",
"fix-style": "php-cs-fixer fix --using-cache=no --allow-risky=yes --ansi",
"test": "phpunit"
},
"suggest": {
"ext-mysqli": "连 MySQL",
"ext-sqlite": "sqlite3",
"symfony/cache": "默认缓存引擎"
},
"config" : {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}