-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.18 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
{
"name": "netsells/laravel-resourceful",
"description": "Laravel API Resources supercharged to get rid of N+1 problems.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"netsells",
"api resource",
"eager loading"
],
"authors": [
{
"name": "Jakub Gawron",
"email": "[email protected]"
},
{
"name": "Sam Jordan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1 || ^8.2",
"ext-json": "*",
"laravel/framework": "^9.0 || ^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0 || ^8.0",
"tmarsteel/mockery-callable-mock": "~2.1",
"netsells/code-standards-laravel": "^1.1"
},
"autoload": {
"psr-4": {
"Netsells\\Http\\Resources\\": "src/",
"Netsells\\Http\\Resources\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan",
"lint": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"format": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit"
}
}