-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.09 KB
/
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
{
"name": "legecha/enumpty",
"description": "Find yourself creating methods like label(), description() or icon() on your enums? This very simple package takes the legwork out of doing so for you, and gives you the same functionality without implementing the methods.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Legecha\\Enumpty\\": "src/"
}
},
"authors": [
{
"name": "legecha",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "dev-master",
"pestphp/pest": "2.x-dev"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"fix": "vendor/bin/php-cs-fixer fix --show-progress=dots",
"lint": "vendor/bin/php-cs-fixer fix --dry-run --show-progress=dots"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}