-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.06 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "bolt/redirector",
"description": "🔄 This Bolt extension adds redirects using YAML",
"type": "bolt-extension",
"license": "MIT",
"authors": [
{
"name": "Ivo Valchev",
"email": "me@ivovalchev.com"
}
],
"require": {
"php": ">=8.2",
"twig/twig": "^3.21"
},
"require-dev": {
"bolt/core": "^6.0",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.1.31",
"phpstan/phpstan-deprecation-rules": "2.0.3",
"rector/rector": "2.2.7",
"symplify/easy-coding-standard": "^13"
},
"autoload": {
"psr-4": {
"BoltRedirector\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"entrypoint": "BoltRedirector\\Extension"
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"symfony/flex": true,
"drupol/composer-packages": true,
"phpstan/extension-installer": true
}
}
}