forked from tsingsun/yii2-graphql
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 867 Bytes
/
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
{
"name":"plato-solutions/yii2-graphql",
"description":"graphql server side for yii2 php framework",
"keyword":["yii2","graphql"],
"type":"yii2-extension",
"license": "BSD-3-Clause",
"authors":[
{
"name":"Plato Analytics",
"email":"emmanuel.sarpong@platoanalytics.com"
}
],
"minimum-stability":"dev",
"require":{
"php": ">=7.4.0",
"yiisoft/yii2":"^2.0.",
"webonyx/graphql-php": "^14.6.2",
"ecodev/graphql-upload": "^6.1.0",
"zendframework/zend-diactoros": "^2.1"
},
"require-dev":{
"phpunit/phpunit": "^9"
},
"autoload":{
"psr-4":{
"yii\\graphql\\":"src",
"yiiunit\\extensions\\graphql\\":"tests"
}
},
"archive": {
"exclude": [
"/tests"
]
}
}