-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (59 loc) · 1.38 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
{
"name": "weimob-cloud/php-project-boot",
"type": "library",
"license": "MIT",
"description": "WeimobCloud PHP Application Boot",
"authors": [
{
"name": "weimob-tech",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"ext-pcntl": "7.2",
"ext-posix": "7.2"
}
},
"require": {
"php": ">=7.2.3",
"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",
"netresearch/jsonmapper": ">=4.0.0",
"symfony/yaml": "^4.3",
"workerman/workerman": "^3.5",
"ext-shmop": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"ext-pcntl": "*",
"ext-posix": "*"
},
"autoload": {
"psr-4": {
"WeimobCloudBoot\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WeimobCloudBootTest\\": "test"
}
},
"scripts": {
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}