-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (58 loc) · 1.45 KB
/
composer.json
File metadata and controls
60 lines (58 loc) · 1.45 KB
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
56
57
58
{
"name": "yaroslawww/laravel-force-https",
"description": "Easy redirect to https for Laravel.",
"keywords": [
"https",
"ssl",
"redirect",
"laravel"
],
"homepage": "https://github.com/yaroslawww/laravel-force-https",
"license": "MIT",
"authors": [
{
"name": "Yaroslav Georgitsa",
"email": "yaroslav.georgitsa@gmail.com",
"homepage": "https://yaroslawww.github.io",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"orchestra/testbench": "^6.21",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.10"
},
"autoload": {
"psr-4": {
"ForceHttps\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ForceHttps\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit --stop-on-failure",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"psalm": "vendor/bin/psalm",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"extra": {
"laravel": {
"providers": [
"ForceHttps\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}