-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.52 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
51
52
53
54
55
56
{
"name": "typicms/laravel-translatable-bootforms",
"description": "Empowers typicms/bootforms with spatie/laravel-translatable.",
"keywords": [
"laravel",
"bootforms",
"translatable",
"i18n",
"form"
],
"license": "MIT",
"authors": [
{
"name": "Propaganistas",
"email": "[email protected]"
},
{
"name": "Samuel De Backer",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "~10.0|~11.0",
"typicms/form": "^3.0.0",
"typicms/bootforms": "^4.0.0",
"spatie/laravel-translatable": "^6.0"
},
"require-dev": {
"orchestra/testbench": "~8.3.0",
"phpunit/phpunit": "^9.5.10",
"php-coveralls/php-coveralls": "~2.5.2",
"nunomaduro/larastan": "^2.0"
},
"autoload": {
"psr-4": {
"TypiCMS\\LaravelTranslatableBootForms\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TypiCMS\\LaravelTranslatableBootForms\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"TypiCMS\\LaravelTranslatableBootForms\\TranslatableBootFormsServiceProvider"
],
"aliases": {
"TranslatableBootForm": "TypiCMS\\LaravelTranslatableBootForms\\Facades\\TranslatableBootForm"
}
}
}
}