-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 869 Bytes
/
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
42
43
44
{
"name": "ferfabricio/rest-get-filters",
"description": "Filters for Laravel applications using Eloquent scopes",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fernando Fabricio dos Santos",
"email": "ferfabricio@gmail.com"
}
],
"autoload": {
"psr-4": {
"FerFabricio\\RestGetFilters\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"phpunit"
],
"cs-check": [
"php-cs-fixer fix --dry-run --diff"
],
"cs-fix": [
"php-cs-fixer fix"
]
},
"require": {
"php": "^7.2.5|^8.0",
"laravel/framework": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.16",
"mockery/mockery": "^1.4"
}
}