forked from Skysplit/laravel5-intl-translation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 890 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
38
{
"name": "skysplit/laravel5-intl-translation",
"type": "library",
"license": "MIT",
"description": "Laravel 5 package for better translation syntax using php-intl extension",
"keywords": [
"laravel",
"translation",
"validation",
"intl"
],
"authors": [
{
"name": "Tomasz Romik",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Skysplit\\Laravel\\Translation\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require": {
"ext-intl": "*",
"illuminate/support": "^5.3",
"illuminate/translation": "^5.3",
"illuminate/validation": "^5.3"
},
"require-dev": {
"orchestra/testbench": "^3.3",
"phpunit/phpunit": "^4.0|^5.0"
}
}