-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
39 lines (39 loc) · 1.1 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
{
"name": "netson/l4gettext",
"description": "Package to add Gettext support to Laravel 4 applications",
"license": "MIT",
"type": "library",
"homepage": "https://github.com/netson/l4gettext",
"keywords": ["laravel", "gettext", "netson", "laravel4"],
"version": "1.5.1",
"authors": [
{
"name": "Rinck Sonnenberg",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/netson"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": ">=4.0,<4.3",
"illuminate/foundation": ">=4.0,<4.3",
"illuminate/config": ">=4.0,<4.3",
"illuminate/session": ">=4.0,<4.3",
"illuminate/filesystem": ">=4.0,<4.3",
"illuminate/view": ">=4.0,<4.3"
},
"require-dev": {
"orchestra/testbench": ">=2.0,<2.3",
"mockery/mockery": "dev-master"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Netson\\L4gettext": "src/"
}
},
"minimum-stability": "dev"
}