forked from hpolthof/laravel-translations-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (29 loc) · 659 Bytes
/
composer.json
File metadata and controls
30 lines (29 loc) · 659 Bytes
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
{
"name": "hpolthof/laravel-translations-db",
"description": "A database translations implementation for Laravel 5.",
"license": "GPL2",
"keywords": ["laravel", "translation", "localization", "database"],
"authors": [
{
"name": "Paul Olthof",
"email": "hpolthof@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/translation": "5.*",
"illuminate/database": "5.*",
"illuminate/cache": "5.*",
"stichoza/google-translate-php": "~3.1"
},
"autoload": {
"psr-4": {
"Hpolthof\\Translation\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}