forked from BenConstable/laravel-localize-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1022 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
45
46
47
{
"name": "benconstable/laravel-localize-middleware",
"description": "Configurable localization middleware for your Laravel >=5.1 application",
"keywords": [
"laravel",
"localise",
"localize",
"middleware"
],
"homepage": "https://github.com/BenConstable/laravel-localize-middleware",
"license": "MIT",
"authors": [
{
"name": "Ben Constable",
"email": "[email protected]",
"homepage": "https://benconstable.co.uk",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "~5.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"psr-4": {
"BenConstable\\Localize\\": "src/Localize"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\BenConstable\\Localize\\": "tests/Localize"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"test": "phpunit"
}
}