-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
executable file
·36 lines (36 loc) · 974 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
{
"name" : "potsky/laravel-localization-helpers",
"description" : "An artisan command package for easy translation management",
"authors" : [
{
"name" : "Potsky"
}
],
"license" : "GPL-3.0+",
"require" : {
"illuminate/support" : "5.5.*",
"friendsofphp/php-cs-fixer" : "^2.6",
"potsky/microsoft-translator-php-sdk" : "*"
},
"require-dev" : {
"orchestra/testbench" : "3.5.*",
"phpunit/phpunit" : "^6.0",
"satooshi/php-coveralls" : "dev-master"
},
"autoload" : {
"classmap" : [
"src/migrations"
],
"psr-0" : {
"Potsky\\LaravelLocalizationHelpers\\" : "src/"
}
},
"minimum-stability" : "stable",
"extra": {
"laravel": {
"providers": [
"Potsky\\LaravelLocalizationHelpers\\LaravelLocalizationHelpersServiceProvider"
]
}
}
}