-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.63 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
{
"name": "api-skeletons/doctrine-orm-graphql",
"description": "GraphQL Type Driver for Doctrine ORM",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom H Anderson",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"doctrine/orm": "^2.18 || ^3.0",
"doctrine/doctrine-laminas-hydrator": "^3.2",
"webonyx/graphql-php": "^v15.0",
"psr/container": "^1.1 || ^2.0",
"league/event": "^3.0"
},
"require-dev": {
"doctrine/coding-standard": "^11.0 || ^12.0",
"doctrine/dbal": "^3.1 || ^4.0",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.4",
"symfony/cache": "^5.3||^6.2",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpstan/phpstan": "^1.12"
},
"suggest": {
"ramsey/uuid-doctrine": "Support for an UUID Doctrine type"
},
"autoload": {
"psr-4": {
"ApiSkeletons\\Doctrine\\ORM\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiSkeletonsTest\\Doctrine\\ORM\\GraphQL\\": "test/"
}
},
"scripts": {
"test": [
"vendor/bin/parallel-lint ./src/ ./test",
"vendor/bin/phpcs",
"vendor/bin/psalm",
"vendor/bin/phpstan analyze src --level=5",
"vendor/bin/phpunit"
],
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=coverage"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}