-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·30 lines (30 loc) · 818 Bytes
/
composer.json
File metadata and controls
executable file
·30 lines (30 loc) · 818 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": "i9w3b/force-https",
"description": "Forçar redirecionamento de http para https usando middleware laravel",
"keywords": ["i9w3b", "laravel", "package", "force-https"],
"homepage": "https://github.com/i9w3b/force-https",
"license": "MIT",
"authors": [{
"name": "Marcelo Sena",
"email": "suportemarcelosena@gmail.com",
"homepage": "https://github.com/i9w3b",
"role": "Developer"
}],
"require": {},
"require-dev": {},
"extra": {
"laravel": {
"providers": [
"I9W3b\\ForceHttps\\ForceHttpsServiceProvider"
],
"aliases": {}
}
},
"autoload": {
"psr-4": {
"I9W3b\\ForceHttps\\": "src/"
}
},
"autoload-dev": {},
"scripts": {}
}