-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.22 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
{
"name": "uniben/laravelgraphqlable",
"description": "A quick and easy way to build prototype GraphQL queries and mutations for your Laravel models and controllers.",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Ben Watson",
"email": "[email protected]"
}
],
"homepage": "https://github.com/uniben/laravelgraphqlable",
"keywords": ["Laravel", "GraphQL", "LaravelGraphqlable"],
"require": {
"illuminate/support": ">=5",
"webonyx/graphql-php": ">=0.13.8",
"mll-lab/laravel-graphql-playground": ">=0.3.3"
},
"require-dev": {
"laravel/framework": "5.5.x",
"phpunit/phpunit": "~7.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"UniBen\\LaravelGraphQLable\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"UniBen\\LaravelGraphQLable\\LaravelGraphQLableServiceProvider"
],
"aliases": {
"LaravelGraphqlable": "UniBen\\LaravelGraphQLable\\Facades\\LaravelGraphQLable"
}
}
}
}