-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
102 lines (102 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "wazum/sluggi",
"type": "typo3-cms-extension",
"license": "GPL-3.0",
"description": "The Swiss knife for TYPO3 URL slugs",
"homepage": "https://github.com/wazum/sluggi",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Wolfgang Klinger",
"role": "Lead Developer"
}
],
"keywords": [
"typo3",
"backend",
"slug",
"url",
"url segment",
"path segment",
"speaking url",
"realurl",
"routing",
"redirect"
],
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4.9",
"typo3/cms-backend": "^12.4.9",
"typo3/cms-redirects": "^12.4.9"
},
"suggest": {
"typo3/cms-install": "Add ability to run migration upgrade wizard.",
"b13/masi": "Add better control over slug generation (e.g. for folders).",
"internetgalerie/ig-slug": "Rebuild URL slugs."
},
"config": {
"platform": {
"php": "8.1"
},
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"phpspec/prophecy": "^1.15.0",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpstan/phpstan": "^1.4.8",
"slevomat/coding-standard": "^8.8",
"squizlabs/php_codesniffer": "^3.7",
"typo3/coding-standards": "^0.5.0",
"vimeo/psalm": "^5.6",
"typo3/cms-install": "^12.4",
"b13/masi": "^2.0"
},
"scripts": {
"php-codesniffer": [
"./.Build/bin/phpcs -s --standard=./Build/php-codesniffer.xml"
],
"php-codesniffer:fix": [
"./.Build/bin/phpcbf --standard=./Build/php-codesniffer.xml"
],
"php-cs-fixer": [
"./.Build/bin/php-cs-fixer fix --dry-run -v --diff --config=./Build/php-cs-fixer.config.php"
],
"php-cs-fixer:fix": [
"./.Build/bin/php-cs-fixer fix -v --config=./Build/php-cs-fixer.config.php"
],
"psalm": [
"./.Build/bin/psalm --config=./Build/psalm.xml"
],
"lint": [
"@psalm",
"@php-cs-fixer",
"@php-codesniffer"
],
"lint:fix": [
"@psalm",
"@php-cs-fixer:fix",
"@php-codesniffer:fix"
]
},
"autoload": {
"psr-4": {
"Wazum\\Sluggi\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "sluggi",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}