forked from shaggyz/laravel-gettext
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathcomposer.json
54 lines (54 loc) · 1.47 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
{
"name": "zerospam/laravel-gettext",
"description": "Adds localization support to laravel applications in an easy way using Poedit and GNU gettext.",
"homepage": "https://github.com/zerospam/laravel-gettext",
"keywords": [
"gettext",
"localization",
"poedit",
"laravel-gettext",
"laravel", "translation"
],
"license": "MIT",
"authors": [
{
"name": "Nicolás Daniel Palumbo",
"email": "n@xinax.net"
},
{
"name": "Antoine Aflalo",
"email": "dev+laravel_gettext@zerospam.ca"
}
],
"support": {
"issues": "https://github.com/zerospam/laravel-gettext/issues"
},
"require": {
"php": ">=7.2",
"laravel/framework": "^6.0 || ^7.0 || ^8.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",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-0": {
"Xinax\\LaravelGettext\\": "src/"
},
"files": [
"src/Xinax/LaravelGettext/Support/helpers.php"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Xinax\\LaravelGettext\\LaravelGettextServiceProvider"
]
}
}
}