forked from thecodingmachine/graphqlite-bundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
66 lines (66 loc) · 1.97 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
61
62
63
64
65
66
{
"name" : "thecodingmachine/graphqlite-bundle",
"description" : "A Symfony bundle for thecodingmachine/graphqlite.",
"keywords" : [
"graphql",
"bundle",
"symfony"
],
"homepage" : "https://github.com/thecodingmachine/graphqlite",
"type" : "symfony-bundle",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : ">=8.2",
"ext-json": "*",
"thecodingmachine/graphqlite" : "^7.0",
"thecodingmachine/graphqlite-symfony-validator-bridge": "^6.0 || ^7.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"symfony/validator": "^6.0 || ^7.0",
"symfony/translation": "^6.0 || ^7.0",
"doctrine/annotations": "^1.13 || ^2.0.1",
"symfony/psr-http-message-bridge": "^6.0 || ^7.0",
"nyholm/psr7": "^1.1",
"laminas/laminas-diactoros": "^2.2 || ^3.0",
"overblog/graphiql-bundle": "^0.2 || ^0.3",
"thecodingmachine/cache-utils": "^1",
"symfony/console": "^6.0 || ^7.0"
},
"require-dev": {
"symfony/security-bundle": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0",
"beberlei/porpaginas": "^1.2 || ^2.0",
"php-coveralls/php-coveralls": "^2.1.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0",
"phpstan/phpstan": "^1.8",
"composer/package-versions-deprecated": "^1.8"
},
"conflict": {
"symfony/event-dispatcher": "<4.3",
"symfony/security-core": "<4.3",
"symfony/routing": "<4.3",
"phpdocumentor/type-resolver": "<1.4"
},
"scripts": {
"phpstan": "phpstan analyse GraphQLiteBundle.php DependencyInjection/ Controller/ Resources/ Security/ -c phpstan.neon --level=7 --no-progress"
},
"suggest": {
"symfony/security-bundle": "To use @Logged or @Right annotations"
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\GraphQLite\\Bundle\\" : ""
}
},
"extra": {
"branch-alias": {
"dev-master": "6.0.x-dev"
}
},
"prefer-stable": true
}