-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
60 lines (60 loc) · 1.46 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
60
{
"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" : ">=8.1",
"thecodingmachine/graphqlite" : "^7.0",
"symfony/validator": "^7"
},
"require-dev": {
"phpunit/phpunit": "^9.6.5 || ^10.0.0",
"mouf/picotainer": "^1.1",
"phpstan/phpstan": "^1.8",
"php-coveralls/php-coveralls": "^2.1.0",
"symfony/translation": "^7",
"doctrine/coding-standard": "^11.1|^12.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": "7.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}