-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.2 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
{
"name": "secretwebmaster/wncms-translatable",
"description": "Make any laravel model translatable",
"keywords": [
"secretwebmaster",
"wncms",
"laravel",
"translate",
"translatable"
],
"homepage": "https://github.com/secretwebmaster/wncms-translatable",
"license": "MIT",
"authors": [
{
"name": "文尼先生",
"email": "[email protected]",
"homepage": "https://wntheme.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Wncms\\Translatable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wncms\\Translatable\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Wncms\\Translatable\\TranslatableServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^9.4",
"nunomaduro/collision": "^8.4"
}
}