-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
35 lines (35 loc) · 888 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
{
"name": "jiannei/laravel-enum",
"description": "A simple and easy-to-use enumeration extension package to help you manage enumerations in your project more conveniently, supporting Laravel and Lumen",
"license": "MIT",
"authors": [
{
"name": "jiannei",
"email": "[email protected]"
}
],
"require-dev": {
"orchestra/testbench": "^9.5",
"pestphp/pest": "^3.5"
},
"autoload": {
"psr-4": {
"Jiannei\\Enum\\Laravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jiannei\\Enum\\Laravel\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"minimum-stability": "dev",
"prefer-stable" : true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}