-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
executable file
·55 lines (55 loc) · 1.28 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
{
"name": "vsch/laravel-translation-manager",
"description": "Enhanced Laravel Translation Manager",
"keywords": [
"laravel",
"translations",
"translator"
],
"homepage": "https://github.com/vsch/laravel-translation-manager",
"license": "MIT",
"authors": [
{
"name": "Vladimir Schneider",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "^5.6",
"laravelcollective/html": "^5.6",
"illuminate/translation": "^5.6",
"doctrine/dbal": "~2.6",
"symfony/finder": "~4.0"
},
"require-dev": {
"phpspec/phpspec": "~3.0",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"classmap": [
"src/Classes"
],
"files": [
"src/Support/helpers.php"
],
"psr-4": {
"Vsch\\TranslationManager\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
}
},
"scripts": {
"post-update-cmd": [
]
},
"minimum-stability": "stable"
}