-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
50 lines (50 loc) · 1.33 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
41
42
43
44
45
46
47
48
49
50
{
"name": "konekt/enum-eloquent",
"description": "Enum attribute casting for Eloquent models",
"type": "library",
"license": "MIT",
"keywords": ["enum", "konekt", "artkonekt", "laravel", "eloquent"],
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"source": "https://github.com/artkonekt/enum-eloquent"
},
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
},
{
"name": "Semyon Chetvertnyh",
"homepage": "https://github.com/semyonchetvertnyh"
},
{
"name": "Mark Boessenkool",
"homepage": "https://github.com/TheM1984"
}
],
"require": {
"php": "^8.0",
"konekt/enum": "^2.0.2 || ^3.0 | ^4.0",
"illuminate/database": "^8.75|9.*|10.*|11.*"
},
"require-dev": {
"phpunit/phpunit": "9 - 10",
"illuminate/events": "^8.75|9.*|10.*|11.*"
},
"autoload": {
"psr-4": { "Konekt\\Enum\\Eloquent\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Konekt\\Enum\\Eloquent\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Konekt\\Enum\\Eloquent\\EnumServiceProvider"
]
}
}
}