-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.77 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.77 KB
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
{
"name": "api-skeletons/zf-doctrine-graphql",
"description": "GraphQL for Doctrine using Hydrators",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom H Anderson",
"email": "tom.h.anderson@gmail.com"
}
],
"require": {
"doctrine/instantiator": "^1.1",
"doctrine/collections": "^1.5",
"zendframework/zend-hydrator": "^2.4",
"zendframework/zend-modulemanager": "^2.8",
"doctrine/common": "^2.8",
"doctrine/doctrine-orm-module": "^1.1.8",
"zendframework/zend-mvc-console": "^1.2",
"zendframework/zend-config": "^3.2",
"api-skeletons/zf-doctrine-criteria": "^1.0",
"zfcampus/zf-doctrine-querybuilder": "^1.7",
"phpro/zf-doctrine-hydration-module": "^3.0",
"webonyx/graphql-php": "^0.12.0"
},
"autoload": {
"psr-4": {
"ZF\\Doctrine\\GraphQL\\": "src/"
}
},
"extra": {
"zf": {
"component": "ZF\\Doctrine\\GraphQL",
"config-provider": "ZF\\Doctrine\\GraphQL\\ConfigProvider"
}
},
"require-dev": {
"dprevite/lint": "dev-master",
"api-skeletons/coding-standard": "^1.0",
"phpunit/phpunit": "^7.1",
"phpstan/phpstan-doctrine": "^0.10",
"zendframework/zend-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"
}
}