-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1020 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
{
"name": "torann/localization-helpers",
"description": "An artisan command package for easy translation management.",
"keywords": ["laravel", "translation", "helpers", "import", "export", "CSV", "onesky"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Daniel Stainback",
"email": "daniel@lyften.com",
"homepage" : "https://lyften.com"
},
{
"name" : "Potsky",
"email" : "potsky@me.com",
"homepage" : "http://www.potsky.com"
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.3",
"phpstan/phpstan": "^0.12.14",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"onesky/api-library-php5": "Allows more advanced translating of the application flow"
},
"autoload": {
"psr-4": {
"Torann\\LocalizationHelpers\\": "src/"
}
}
}