-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.07 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
{
"name": "Saiks24/rest-api-task-service",
"description": "Rest api to work with deferred calculations tasks",
"homepage": "https://github.com/saiks24/rest-api-task-service",
"keywords": ["rest","amqp","api"],
"authors": [
{
"name": "Saiks24",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "Apache-2",
"require": {
"slim/slim": "^3.0",
"monolog/monolog": "^1.17",
"ext-pcntl": "*",
"ext-amqp": "*",
"ext-redis": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Saiks24\\App\\":"src/App/",
"Saiks24\\Command\\":"src/Command/",
"Saiks24\\Queue\\":"src/Queue/",
"Saiks24\\Exceptions\\":"src/Exceptions/",
"Saiks24\\Validate\\":"src/Validate/",
"Saiks24\\Storage\\":"src/Storage/",
"Saiks24\\Http\\":"src/Http/",
"Saiks24\\Middleware\\":"src/Middleware/",
"Saiks24\\Worker\\":"src/Worker/",
"Saiks24\\Verification\\":"src/Verification/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"codeception/codeception": "^2.5"
}
}