forked from Plato-solutions/yii2-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.31 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
61
62
{
"name": "magdv/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": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"webonyx/graphql-php": "^14.11",
"ecodev/graphql-upload": "^6.1",
"laminas/laminas-diactoros": "^3.2",
"yiisoft/yii2": "^2.0.47"
},
"require-dev": {
"phpunit/phpunit": "^9",
"overtrue/phplint": "^9.0",
"rector/rector": "^1.0",
"squizlabs/php_codesniffer": "^3.9",
"vimeo/psalm": "5.23.1"
},
"autoload": {
"psr-4": {
"yii\\graphql\\": "src",
"yiiunit\\extensions\\graphql\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"lint": "phplint",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"psalm": "psalm",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html var/test/coverage"
},
"archive": {
"exclude": [
"/tests"
]
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}