This repository was archived by the owner on Jul 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.29 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "youness_usee/filter",
"description": "the package is for filtering data for EXP you have search bar/page with multi filters option this package will help you to do that filters easily and fast this package using pipeline technology and it will check the request part by part",
"license": "MIT",
"keywords": [
"usee",
"filter",
"search",
"package",
"laravel"
],
"authors": [
{
"name": "alireza alizade",
"email": "alizade488@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Filter\\": "src/",
"youness_usee\\filter\\app\\Console\\Commands\\": "src/app/Console/Commands/",
"youness_usee\\filter\\app\\": "src/app/",
"youness_usee\\filter\\": "src/",
"App\\": "app/"
},
"classmap": [
"src/app/Console/Commands",
"src/app"
],
"psr-0": {
"Filter\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"youness_usee\\filter\\UseeFilterServiceProvider"
]
}
},
"prefer-stable": true,
"require": {}
}