-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.29 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "jerome/filterable",
"description": "Streamline dynamic Eloquent query filtering with seamless API request integration and advanced caching strategies.",
"type": "library",
"license": "MIT",
"keywords": [
"eloquent",
"filter",
"query"
],
"homepage": "https://github.com/Thavarshan/filterable",
"support": {
"issues": "https://github.com/Thavarshan/filterable/issues",
"source": "https://github.com/Thavarshan/filterable"
},
"authors": [
{
"name": "Jerome Thayananthajothy",
"email": "tjthavarshan@gmail.com",
"homepage": "https://thavarshan.com"
}
],
"autoload": {
"psr-4": {
"Filterable\\": "src/Filterable",
"Filterable\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Filterable\\Tests\\": "tests"
}
},
"require": {
"php": "^8.3 | ^8.4 | ^8.5",
"illuminate/cache": "^11.0|^12.0|^13.0",
"illuminate/contracts": "^11.0|^12.0|^13.0",
"illuminate/database": "^11.0|^12.0|^13.0",
"illuminate/http": "^11.0|^12.0|^13.0",
"illuminate/support": "^11.0|^12.0|^13.0",
"nesbot/carbon": "^2.72|^3.0",
"spatie/laravel-package-tools": "^1.93"
},
"require-dev": {
"ext-json": "*",
"larastan/larastan": "^3.1",
"laravel/pint": "^1.21",
"mockery/mockery": "^1.4",
"nunomaduro/phpinsights": "^2.11",
"orchestra/testbench": "9.*|10.*|11.*",
"phpunit/phpunit": "^11.5.3",
"squizlabs/php_codesniffer": "^3.7",
"tightenco/duster": "^3.1"
},
"scripts": {
"lint": "chmod +x bin/lint.sh && ./bin/lint.sh",
"fix": "chmod +x bin/fix.sh && ./bin/fix.sh",
"test": "chmod +x bin/test.sh && ./bin/test.sh"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpunit/phpunit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Filterable\\Providers\\FilterableServiceProvider"
]
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}