-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.23 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "romegasoftware/availability",
"description": "Reusable availability rule engine for Eloquent models.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.4",
"illuminate/contracts": "^12.0|^13.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0"
},
"require-dev": {
"orchestra/testbench": "^10.0|^11.0",
"phpunit/phpunit": "^12.0",
"larastan/larastan": "^3.6",
"laravel/pint": "^1.18"
},
"autoload": {
"psr-4": {
"RomegaSoftware\\Availability\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RomegaSoftware\\Availability\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"format": "vendor/bin/pint --parallel --preset laravel",
"analyse": "vendor/bin/phpstan analyse --memory-limit=2G"
},
"extra": {
"laravel": {
"providers": [
"RomegaSoftware\\Availability\\Providers\\AvailabilityServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}