-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "mattrabe/voyager-translatable-formfield",
"description": "Add a Voyager FormField type of 'translatable' that utilizes translatable data on a Model that uses dimsav/laravel-translatable",
"keywords": ["voyager", "translatable", "laravel", "formfield"],
"license" : "MIT",
"authors" : [
{
"name": "Matt Rabe",
"email": "[email protected]",
"homepage": "http://www.websolutionshack.com"
}
],
"require": {
"larapack/hooks": "~1.0",
"tcg/voyager": "^1.0",
"dimsav/laravel-translatable": "^8.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Mattrabe\\VoyagerTranslatableFormField\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Mattrabe\\VoyagerTranslatableFormField\\VoyagerTranslatableFormFieldServiceProvider"
],
"aliases": [
"Mattrabe\\VoyagerTranslatableFormField\\Facade"
]
},
"hook": {
"providers": [
"Mattrabe\\VoyagerTranslatableFormField\\VoyagerTranslatableFormFieldServiceProvider"
]
}
}
}