-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
61 lines (61 loc) · 1.73 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
{
"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\u00e9grier",
"email": "[email protected]",
"homepage": "https://workadventu.re"
}
],
"scripts": {
"test": "phpunit"
},
"require": {
"php": "^8.1",
"thecodingmachine/graphqlite": "^v6.2.1",
"illuminate/console": "^9 || ^10 | ^11",
"illuminate/container": "^9 || ^10 | ^11",
"illuminate/support": "^9 || ^10 | ^11",
"illuminate/cache": "^9 || ^10 | ^11",
"symfony/psr-http-message-bridge": "^1.3.0 || ^2 || ^6",
"laminas/laminas-diactoros": "^2.2.2",
"symfony/cache": "^4.3 || ^5 || ^6",
"psr/container": "^2.0.2"
},
"require-dev": {
"orchestra/testbench": "^7 || ^8",
"phpunit/phpunit": "^9.6.6 || ^10.0.19",
"ext-sqlite3": "*"
},
"autoload": {
"psr-4": {
"TheCodingMachine\\GraphQLite\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/Fixtures/App"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.1.x-dev"
},
"laravel": {
"providers": [
"TheCodingMachine\\GraphQLite\\Laravel\\Providers\\GraphQLiteServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}