-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.39 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
{
"name": "myerscode/laravel-query-strategies",
"homepage": "https://github.com/myerscode/laravel-query-strategies",
"description": "A package for applying filters, ordering, eager loads, result limiting and pagination to Eloquent queries",
"keywords": [
"laravel",
"query",
"filter",
"ordering",
"limiting",
"pagination",
"request",
"eloquent"
],
"type": "package",
"license": "MIT",
"authors": [
{
"name": "myerscode",
"email": "[email protected]",
"homepage": "https://myerscode.com"
},
{
"name": "Fred Myerscough",
"email": "[email protected]",
"homepage": "https://fredmyerscough.co.uk"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"laravel/framework": "^10.0",
"mockery/mockery": "^1.2",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Myerscode\\Laravel\\QueryStrategies\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Myerscode\\Laravel\\QueryStrategies\\ServiceProvider"
]
}
},
"scripts": {
"tests": "vendor/bin/phpunit --testdox --no-coverage --colors=always",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --colors=always"
}
}