-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.51 KB
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
{
"name": "submtd/laravel-request-scope",
"description": "Adds sorting, filtering and other options as query parameters to Laravel apps.",
"license": "proprietary",
"type": "library",
"keywords": [
"laravel",
"eloquent"
],
"authors": [
{
"name": "Steve Harmeyer",
"email": "harmeyersteve@gmail.com"
}
],
"homepage": "https://github.com/submtd/laravel-request-scope",
"require": {
"php": "^7.4 || ^8.0",
"laravel/framework": "^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"roave/security-advisories": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Submtd\\LaravelRequestScope\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Submtd\\LaravelRequestScope\\Tests\\": "tests",
"Submtd\\LaravelRequestScope\\Tests\\Database\\Factories\\": "tests/database/factories"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Submtd\\LaravelRequestScope\\Providers\\LaravelRequestScopeServiceProvider"
]
}
}
}