forked from patricksamson/laravel-locale-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 886 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
38
39
40
41
42
43
44
{
"name": "lykegenes/laravel-locale-switcher",
"description": "A Laravel locale switcher Middleware",
"keywords": [
"laravel",
"locale",
"switcher",
"middleware"
],
"homepage": "https://github.com/Lykegenes/laravel-locale-switcher",
"license": "MIT",
"authors": [
{
"name": "Patrick Samson",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "~5.1",
"illuminate/http": "~5.1"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "0.9.*",
"satooshi/php-coveralls": "~1.0",
"orchestra/testbench": "~3.1"
},
"autoload": {
"psr-4": {
"Lykegenes\\LocaleSwitcher\\": "src/"
},
"files": ["src/helpers.php"]
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}