forked from thecodingmachine/graphqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.6 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
{
"name" : "thecodingmachine/graphqlite-laravel",
"description" : "A Laravel service provider package to help you get started with GraphQLite in Laravel.",
"keywords" : [
"GraphQL",
"GraphQLite",
"Laravel"
],
"homepage" : "https://github.com/thecodingmachine/graphqlite",
"type" : "library",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php" : ">=7.2",
"thecodingmachine/graphqlite" : "^4",
"illuminate/console": "^5.7|^6.0",
"illuminate/container": "^5.7|^6.0",
"illuminate/support": "^5.7|^6.0",
"illuminate/cache": "^5.7|^6.0",
"symfony/psr-http-message-bridge": "^1",
"zendframework/zend-diactoros": "^1.8.6",
"symfony/cache": "^4.3 || ^5"
},
"require-dev": {
"orchestra/testbench": "^3.7.7 || ^4",
"phpunit/phpunit": "^7.5.4 || ^8.3",
"ext-sqlite3": "*"
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\GraphQLite\\Laravel\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"App\\" : "tests/Fixtures/App"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
},
"laravel": {
"providers": [
"TheCodingMachine\\GraphQLite\\Laravel\\Providers\\GraphQLiteServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}