-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 973 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 973 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"description": "Flow Framework Router to ensure a trailing slash in Neos.",
"type": "neos-package",
"license": "MIT",
"name": "flowpack/seo-routing",
"config": {
"bin-dir": "bin",
"allow-plugins": {
"neos/composer-plugin": true,
"phpstan/extension-installer": true
}
},
"require": {
"guzzlehttp/psr7": "^2.0",
"php": "^8.1"
},
"conflict": {
"neos/neos": "<9.0"
},
"require-dev": {
"neos/neos": "^9.0",
"neos/contentgraph-doctrinedbaladapter": "^9.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"Flowpack\\SeoRouting\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Flowpack\\SeoRouting\\Tests\\": "Tests/"
}
},
"extra": {
"neos": {
"package-key": "Flowpack.SeoRouting"
}
}
}