-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.15 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "vidoomy/graphql-mutation-validator-bundle",
"description": "Provide a base class to validate user data sent in a GraphQL mutation and return validations errors.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["GraphQL", "Validation"],
"authors": [
{
"name": "AssoConnect",
"homepage": "https://www.assoconnect.com"
},
{
"name": "Vidoomy",
"homepage": "https://www.vidoomy.com"
},
{
"name": "Sylvain Fabre"
},
{
"name": "Diego Rin Martín"
}
],
"autoload": {
"psr-4": {
"Vidoomy\\GraphQLMutationValidatorBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require": {
"php": "^7.1",
"overblog/graphql-bundle": "^0.13.1",
"symfony/validator": "^4.0|^5.0",
"doctrine/annotations": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/twig-bundle": "^4.0|^5.0",
"symfony/security-bundle": "^4.0|^5.0",
"symfony/yaml": "^4.0|^5.0",
"symfony/templating": "^4.0|^5.0",
"symfony/console": "^4.0|^5.0"
},
"extra" : {
"branch-alias" : {
"dev-master" : "1.0"
}
}
}