forked from zerospam/laravel-gettext
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
59 lines (59 loc) · 1.64 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
{
"name": "deepskylog/laravel-gettext",
"description": "Adds localization support to laravel applications in an easy way using Poedit and GNU gettext.",
"homepage": "https://github.com/deepskylog/laravel-gettext",
"keywords": [
"gettext",
"localization",
"poedit",
"laravel-gettext",
"laravel", "translation"
],
"license": "MIT",
"authors": [
{
"name": "Nicolás Daniel Palumbo",
"email": "[email protected]"
},
{
"name": "Antoine Aflalo",
"email": "[email protected]"
},
{
"name": "Wim De Meester",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/deepskylog/laravel-gettext/issues"
},
"require": {
"php": ">=7.2",
"laravel/framework": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"laravel/helpers": "^1.1"
},
"require-dev": {
"mockery/mockery": "dev-master",
"phpunit/phpunit": "~7.0 || ^8.5 || ^9",
"squizlabs/php_codesniffer" : "1.5.*",
"laravel/laravel": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"php-coveralls/php-coveralls": "^2.1",
"symfony/translation": "^6.0"
},
"autoload": {
"psr-0": {
"deepskylog\\LaravelGettext\\": "src/"
},
"files": [
"src/deepskylog/LaravelGettext/Support/helpers.php"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"deepskylog\\LaravelGettext\\LaravelGettextServiceProvider"
]
}
}
}