-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 860 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
{
"name": "midweste/slimredirects",
"description": "Redirect a request to a different domain. Supports wildcard, regex, http to https redirection.",
"homepage": "https://github.com/midweste/slimredirects",
"license": "MIT",
"keywords": [
"php",
"301",
"redirect",
"slimredirects"
],
"authors": [
{
"name": "midweste",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"psr/http-message": "^1.0",
"slim/psr7": "^1.1",
"slim/http-cache": "^1.0",
"laminas/laminas-httphandlerrunner": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"phing/phing": "^2.16",
"squizlabs/php_codesniffer": "^3.2.0",
"infection/infection": "^0.16.3"
},
"autoload": {
"psr-4": {
"Midweste\\SlimRedirects\\": "src/"
}
},
"autoload-dev": {
"psr-4": {}
}
}