-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.05 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "nimut/hellurl",
"type": "typo3-cms-extension",
"description": "HellUrl: speaking paths for TYPO3",
"homepage": "https://github.com/Nimut/TYPO3-hellurl",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=5.3.7 <7.3",
"typo3/cms-core": "^6.2.6 || ^7.6 || ^8.7"
},
"require-dev": {
"php": "~7.0",
"friendsofphp/php-cs-fixer": "^2.0",
"phpstan/phpstan": "^0.6"
},
"replace": {
"typo3-ter/hellurl": "self.version",
"helhum/realurl": "*",
"dmitryd/typo3-realurl": "*",
"typo3-ter/realurl": "*"
},
"autoload": {
"psr-4": {
"Nimut\\Hellurl\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"typo3/cms": {
"extension-key": "hellurl",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}