forked from shaggyz/laravel-gettext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "xinax/laravel-gettext",
"description": "Adds localization support to laravel applications in an easy way using PoEdit and GNU-Gettext.",
"homepage": "https://github.com/xinax/laravel-gettext",
"keywords": [
"gettext",
"localization",
"poedit",
"laravel-gettext",
"laravel", "translation"
],
"license": "MIT",
"authors": [
{
"name": "Nicolás Daniel Palumbo",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/xinax/laravel-gettext/issues"
},
"require": {
"php": ">=5.4.0",
"laravel/framework": "5.*"
},
"require-dev": {
"mockery/mockery": "dev-master",
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer" : "1.5.*"
},
"autoload": {
"psr-0": {
"Xinax\\LaravelGettext\\": "src/"
}
},
"minimum-stability": "stable"
}