forked from thecodingmachine/graphqlite-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
69 lines (69 loc) · 2.07 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
67
68
69
{
"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" : ">=7.4",
"ext-json": "*",
"thecodingmachine/graphqlite" : "^5.0",
"thecodingmachine/graphqlite-symfony-validator-bridge" : "^5.0",
"symfony/framework-bundle": "^5.4 || ^6",
"symfony/validator": "^5.4 || ^6",
"symfony/translation": "^5.4 || ^6",
"doctrine/annotations": "^1.13",
"symfony/psr-http-message-bridge": "^2.0",
"nyholm/psr7": "^1.1",
"laminas/laminas-diactoros": "^2.2.2",
"overblog/graphiql-bundle": "^0.2 || ^0.3",
"thecodingmachine/cache-utils": "^1",
"symfony/console": "^5.4 || ^6"
},
"require-dev": {
"symfony/security-bundle": "^5.4 || ^6",
"symfony/yaml": "^5.4 || ^6",
"phpstan/phpstan": "^0.12.90",
"beberlei/porpaginas": "^1.2",
"php-coveralls/php-coveralls": "^2.1.0",
"symfony/phpunit-bridge": "^5.4 || ^6",
"thecodingmachine/phpstan-strict-rules": "^v0.12.1",
"composer/package-versions-deprecated": "^1.8",
"phpstan/phpstan-webmozart-assert": "^0.12.12"
},
"conflict": {
"mouf/classname-mapper": "<1.0.2",
"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": "5.0.x-dev"
}
},
"prefer-stable": true
}