-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
50 lines (50 loc) · 1.26 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
{
"name": "kejawenlab/semart-api-gateway",
"type": "project",
"license": "proprietary",
"require": {
"php": "^7.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-redis": "*",
"pimple/pimple": "^3.0",
"ramsey/uuid": "^4.0",
"ruflin/elastica": "^7.0",
"symfony/console": "^5.1",
"symfony/dotenv": "^5.1",
"symfony/http-client": "^5.1",
"symfony/http-foundation": "^5.1",
"symfony/http-kernel": "^5.1",
"symfony/routing": "^5.1",
"symfony/yaml": "^5.1",
"webmozart/assert": "^1.9"
},
"require-dev": {
"ext-swoole": "^4.4.7",
"phpunit/phpunit": "^8.5",
"swoole/ide-helper": "@dev"
},
"suggest": {
"ext-swoole": "To enable Swoole Server"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"KejawenLab\\SemartApiGateway\\": "src/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"KejawenLab\\SemartApiGateway\\Tests\\": "tests/"
}
}
}