-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.34 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "erikaraujo/filament-enum-attributes",
"description": "Traits for Enums to allow for using Attributes instead of get methods for Filament enums",
"keywords": [
"erik araujo",
"filament-enum-attributes"
],
"homepage": "https://github.com/erikaraujo/filament-enum-attributes",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Erik Araujo",
"email": "contact@erikaraujo.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"larastan/larastan": "^2.8",
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.18",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"ErikAraujo\\FilamentEnumAttributes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ErikAraujo\\FilamentEnumAttributes\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse",
"pint": "./vendor/bin/pint",
"test": "./vendor/bin/phpunit",
"test:coverage:html": [
"@test --coverage-html reports/test-coverage --coverage-text",
"open reports/test-coverage/index.html"
]
},
"config": {
"sort-packages": true
},
"extra": {
}
}