-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.75 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
{
"name": "api-skeletons/laravel-doctrine-graphql",
"description": "GraphQL for Doctrine using Hydrators for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom H Anderson",
"email": "[email protected]"
}
],
"require": {
"laravel-doctrine/orm": "^1.7",
"doctrine/instantiator": "^1.4",
"doctrine/collections": "^1.6",
"doctrine/common": "^3.2",
"laminas/laminas-config": "^3.7",
"laminas/laminas-hydrator": "^4.3",
"laminas/laminas-dependency-plugin": "^2.2",
"webonyx/graphql-php": "^v14.11"
},
"autoload": {
"psr-4": {
"ApiSkeletons\\Laravel\\Doctrine\\GraphQL\\": "src/"
}
},
"extra": {
"zf": {
"component": "ApiSkeletons\\Doctrine\\GraphQL",
"config-provider": "ApiSkeletons\\Doctrine\\GraphQL\\ConfigProvider"
},
"laravel": {
"providers": [
"ApiSkeletons\\Laravel\\Doctrine\\GraphQL\\ServiceProvider"
]
}
},
"require-dev": {
"dprevite/lint": "dev-master",
"api-skeletons/coding-standard": "^1.0",
"phpunit/phpunit": "^7.1",
"phpstan/phpstan-doctrine": "^0.11.6",
"laminas/laminas-test": "^3.2",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"ci-check": [
"@lint",
"@phpcs",
"@test",
"@phpstan"
],
"lint": "lint src/",
"phpcs": "phpcs",
"phpstan": "phpstan analyze -c phpstan.neon --level=7 src/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}