-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.15 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
{
"name": "gregorip02/restql",
"description": "A data resolution package for Laravel",
"type": "library",
"keywords": ["restql", "eloquent", "laravel", "graphql"],
"url": "https://github.com/gregorip02/restql",
"license": "LGPL-3.0",
"authors": [
{
"name": "Gregori Piñeres",
"email": "[email protected]",
"homepage": "https://github.com/gregorip02"
}
],
"support": {
"issues": "https://github.com/gregorip02/restql/issues",
"source": "https://github.com/gregorip02/restql"
},
"require": {
"php": "^7.2|^8.0",
"laravel/framework": "^6|^7|^8"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8",
"orchestra/testbench": "^4|^5|^6",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload": {
"psr-4": {
"Restql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Testing\\": "tests/",
"Testing\\App\\": "tests/App/app/"
}
},
"extra": {
"laravel": {
"providers": [
"Restql\\Providers\\RestqlServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}