-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 785 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 785 Bytes
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
{
"name": "shin1x1/laravel-force-https-url-scheme",
"description": "Force https url schema middleware for Laravel 5",
"keywords": ["Laravel", "middleware"],
"homepage": "https://github.com/shin1x1/laravel-force-https-url-scheme",
"license": "MIT",
"authors": [
{
"name": "Masashi Shinbara",
"email": "shin1x1@gmail.com",
"homepage": "https://github.com/shin1x1"
}
],
"require": {
"php": ">5.4.0",
"illuminate/container": "~5.0",
"illuminate/http": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-4": {
"Shin1x1\\ForceHttpsUrlScheme\\": "src",
"Shin1x1\\ForceHttpsUrlScheme\\Test\\": "tests"
}
},
"minimum-stability": "stable"
}