-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.39 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
{
"name" : "thecodingmachine/graphqlite-symfony-validator-bridge",
"description" : "A bridge to use Symfony validator with GraphQLite.",
"keywords" : [
"graphql",
"graphqlite",
"validator",
"symfony"
],
"homepage" : "https://graphqlite.thecodingmachine.io/",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : ">=7.2",
"thecodingmachine/graphqlite" : "^5.0",
"symfony/validator": "^4.2 | ^5 | ^6",
"doctrine/annotations": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^8.4.1",
"mouf/picotainer": "^1.1",
"phpstan/phpstan": "^0.12.14",
"php-coveralls/php-coveralls": "^2.1.0",
"symfony/translation": "^4",
"doctrine/coding-standard": "^9.0"
},
"scripts": {
"phpstan": "phpstan analyse src/ -c phpstan.neon --level=7 --no-progress",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": ["@cs-check", "@phpstan", "phpunit"]
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\GraphQLite\\Validator\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"TheCodingMachine\\GraphQLite\\Validator\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}