-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.06 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
{
"name": "anavel/gettext",
"description": "Manage laravel translation files from your admin panel",
"keywords": [
"laravel",
"admin",
"gettext",
"cms"
],
"authors": [
{
"name": "Adrian P. Blunier",
"email": "[email protected]"
},
{
"name": "Carlos Morales",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.1.*",
"illuminate/translation": "5.1.*",
"anavel/foundation": "0.1.*",
"eusonlito/laravel-gettext": "1.*"
},
"require-dev": {
"orchestra/testbench": "~3.1",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "0.9.*",
"whatthejeff/nyancat-phpunit-resultprinter": "~1.2"
},
"autoload": {
"psr-4": {
"Anavel\\Gettext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Anavel\\Gettext\\Tests\\": "tests"
}
},
"minimum-stability": "stable"
}