-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.12 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
{
"name": "doncadavona/eloquenturl",
"description": "Search and filter Laravel Eloquent models by query parameters with ease.",
"license": "MIT",
"authors": [
{
"name": "Don Cadavona",
"email": "[email protected]",
"homepage": "https://doncadavona.com"
}
],
"homepage": "https://github.com/doncadavona/eloquenturl",
"keywords": ["Laravel", "Eloquenturl", "search", "filter", "query string", "query parameters"],
"require": {
"illuminate/support": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"orchestra/testbench": "*"
},
"autoload": {
"psr-4": {
"Doncadavona\\Eloquenturl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Doncadavona\\Eloquenturl\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Doncadavona\\Eloquenturl\\EloquenturlServiceProvider"
],
"aliases": {
"Eloquenturl": "Doncadavona\\Eloquenturl\\Facades\\Eloquenturl"
}
}
}
}