-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
51 lines (51 loc) · 1.24 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
{
"name": "ecodev/graphql-doctrine",
"description": "Declare GraphQL types from Doctrine entities and attributes",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"keywords": [
"api",
"graphql",
"doctrine",
"doctrine-orm"
],
"scripts": {
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpunit --color=always",
"phpstan analyse --ansi"
],
"fix": [
"php-cs-fixer fix --ansi"
]
},
"autoload": {
"psr-4": {
"GraphQL\\Doctrine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GraphQLTests\\Doctrine\\": "tests"
}
},
"require": {
"php": "^8.2",
"doctrine/orm": "^2.15",
"psr/container": "^1.1 || ^2.0",
"webonyx/graphql-php": "^15.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"laminas/laminas-servicemanager": "@stable",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "@stable",
"symfony/cache": "@stable"
}
}