-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.02 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
{
"name": "aidynmakhataev/laravel-filterable",
"description": "A laravel package to handle filtering by URL query strings",
"license": "MIT",
"authors": [
{
"name": "Aidyn Makhataev",
"email": "makataev.7@gmail.com",
"homepage": "https://github.com/AidynMakhataev"
}
],
"homepage": "https://github.com/aidynmakhataev/laravel-filterable",
"keywords": ["Laravel", "LaravelFilterable"],
"require": {
"illuminate/support": "~5"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"AidynMakhataev\\LaravelFilterable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AidynMakhataev\\LaravelFilterable\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"AidynMakhataev\\LaravelFilterable\\LaravelFilterableServiceProvider"
]
}
}
}