-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (48 loc) · 1.14 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
{
"name": "weimob-cloud/php-project-demo",
"type": "library",
"license": "MIT",
"description": "WeimobCloud PHP Application Demo",
"authors": [
{
"name": "weimob-tech",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.34",
"ext-PDO": "*",
"ext-redis": "*",
"guzzlehttp/guzzle": "^6.3|^7.0",
"ext-json": "*",
"ext-curl": "*",
"slim/slim": "^3.0",
"psr/container": "1.0.0",
"monolog/monolog": "^1.24",
"weimob-cloud/php-project-boot": "dev-master",
"weimob-cloud/php-ability-sdk": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"ext-pcntl": "*",
"ext-posix": "*"
},
"autoload": {
"psr-4": {
"WeimobCloudBootDemo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WeimobCloudBootDemoTest\\": "test"
}
},
"scripts": {
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}