-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.26 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
{
"name" : "thecodingmachine/tdbm-graphql-bundle",
"description" : "A Symfony bundle for thecodingmachine/tdbm-graphql.",
"keywords" : [
"graphql",
"tdbm",
"bundle",
"symfony"
],
"homepage" : "https://thecodingmachine.github.io/tdbm/",
"type" : "symfony-bundle",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : ">=7.2",
"thecodingmachine/graphqlite-bundle": "^5",
"thecodingmachine/tdbm-bundle": "^5.2",
"thecodingmachine/tdbm-graphql": "^5.0",
"symfony/framework-bundle": "^4.1.9 | ^5"
},
"require-dev": {
"symfony/security-bundle": "^4.1.9 | ^5",
"symfony/yaml": "^4.1.9 | ^5",
"phpunit/phpunit": "^8.0.4",
"phpstan/phpstan": "^1",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"phpstan": "phpstan analyse TheCodingMachineTdbmGraphQLBundle.php DependencyInjection/ Resources/ -c phpstan.neon --level=7 --no-progress"
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\Tdbm\\GraphQL\\Bundle\\" : ""
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}