forked from translation/laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "supsign/tio-laravel",
"description": "Add this package to localize your Laravel application (PHP, JSON or GetText).",
"keywords": [
"laravel",
"translation",
"localization",
"gettext",
"translation.io"
],
"homepage": "https://github.com/translation/laravel",
"license": "MIT",
"authors": [
{
"name": "Armands Leinieks",
"email": "armands.leinieks@gmail.com"
},
{
"name": "Michaël Hoste",
"email": "michael.hoste@gmail.com"
}
],
"repositories": [],
"require": {
"php": ">=7.0",
"gettext/gettext": "^4.8.4",
"gettext/languages": "<=2.6.0",
"illuminate/config": ">=5.5",
"illuminate/console": ">=5.5",
"illuminate/filesystem": ">=5.5",
"illuminate/support": ">=5.5",
"illuminate/translation": ">=5.5",
"guzzlehttp/guzzle": ">=6.3"
},
"require-dev": {
"phpunit/phpunit": ">=5.7.27",
"php-vcr/php-vcr": "^1.3",
"squizlabs/php_codesniffer": "~3.0",
"orchestra/testbench": ">=3.1"
},
"autoload": {
"psr-4": {
"Tio\\Laravel\\": "src/"
},
"files": [
"src/Helpers/translator_functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tio\\Laravel\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"scripts": {
"test": "phpunit --no-coverage",
"format": "phpcbf --standard=psr2 src/"
},
"extra": {
"laravel": {
"providers": [
"Tio\\Laravel\\ServiceProvider"
]
}
}
}