-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (32 loc) · 767 Bytes
/
composer.json
File metadata and controls
34 lines (32 loc) · 767 Bytes
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
{
"name": "everywhere-solutions/api",
"authors": [
{
"name": "Sergey Kambalin",
"email": "greyexpert@gmail.com"
}
],
"repositories": [
{
"type": "path",
"url": "./lib/graphql-php",
"options": {
"symlink": true
}
}
],
"require": {
"slim/slim": "^3.9",
"webonyx/graphql-php": "dev-master",
"overblog/dataloader-php": "^0.5.2",
"tuupola/slim-jwt-auth": "^2.3",
"zendframework/zend-authentication": "^2.5",
"pimple/pimple": "^3.2"
},
"autoload": {
"psr-4": {
"Everywhere\\Api\\": "api/",
"Everywhere\\Oxwall\\": "src/"
}
}
}