forked from thecodingmachine/graphqlite-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.74 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
{
"name": "tylerfiekens/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.2",
"thecodingmachine/graphqlite": "^v7.0.0",
"illuminate/console": "^11",
"illuminate/container": "^11",
"illuminate/support": "^11",
"illuminate/cache": "^11",
"symfony/psr-http-message-bridge": "^6",
"laminas/laminas-diactoros": "^3.5",
"symfony/cache": " ^6",
"psr/container": "^2.0.2",
"ecodev/graphql-upload": "^7.0"
},
"require-dev": {
"orchestra/testbench": "v9.5.2",
"phpunit/phpunit": "^10.0.19",
"ext-sqlite3": "*",
"laravel/pint": "^1.18"
},
"autoload": {
"psr-4": {
"TheCodingMachine\\GraphQLite\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/Fixtures/App",
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "6.1.x-dev"
},
"laravel": {
"providers": [
"TheCodingMachine\\GraphQLite\\Laravel\\Providers\\GraphQLiteServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}