-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.64 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "settermjd/redirect-to-new-domain-middleware",
"description": "This is a small piece of PSR-15 (HTTP Server Request Handlers) middleware that redirects a request from one domain to a new one; such as an old one that's being deprecated to a new one when a site is being re-hosted",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"mezzio",
"middleware",
"psr-11",
"psr-15"
],
"homepage": "https://settermjd.github.io/redirect-to-new-domain-middleware/",
"support": {
"docs": "https://settermjd.github.io/redirect-to-new-domain-middleware/",
"issues": "https://github.com/settermjd/redirect-to-new-domain-middleware/issues",
"source": "https://github.com/settermjd/redirect-to-new-domain-middleware",
"rss": "https://github.com/settermjd/redirect-to-new-domain-middleware/releases.atom"
},
"require": {
"fig/http-message-util": "^1.1",
"laminas/laminas-component-installer": "^3.5",
"laminas/laminas-diactoros": "^3.5",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.66",
"laminas/laminas-coding-standard": "^3.0",
"monolog/monolog": "^3.8",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.11"
},
"autoload": {
"psr-4": {
"Settermjd\\Middleware\\": "src/Middleware"
}
},
"autoload-dev": {
"psr-4": {
"Settermjd\\MiddlewareTest\\": "test/Middleware"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"qa": [
"@cs-check",
"@static-analysis",
"@test"
],
"static-analysis": "vendor/bin/phpstan analyse src test",
"test": "vendor/bin/phpunit"
},
"scripts-descriptions": {
"cs-check": "Run coding standards checks.",
"cs-fix": "Automatically fix coding standard issues.",
"qa": "Run all quality assurance checks on the code",
"static-analysis": "Run PHPStan to statically analyse the code",
"test": "Run unit tests."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"laminas/laminas-component-installer": true
},
"sort-packages": true
},
"extra": {
"laminas": {
"config-provider": "Settermjd\\Middleware\\ConfigProvider"
}
}
}