-
Notifications
You must be signed in to change notification settings - Fork 89
/
composer.json
46 lines (46 loc) · 1.07 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
{
"name": "kodeine/laravel-meta",
"description": "Fluent Meta Data for Eloquent Models, as if it is a property on your model.",
"keywords": [
"laravel",
"meta",
"metas",
"meta data",
"data",
"metadata",
"metable",
"model",
"eloquent",
"kodeine"
],
"authors": [
{
"name": "Ahsen M.",
"homepage": "https://github.com/kodeine",
"role": "Developer"
}
],
"require": {
"php": ">=7.3",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
"illuminate/events": "^8.0|^9.0|^10.0|^11.0",
"ext-json": "*"
},
"autoload": {
"classmap": [],
"psr-0": {
"Kodeine\\Metable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kodeine\\Metable\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^9.5|^10.5"
}
}