forked from TimWilms/jumpurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.1 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
{
"name": "friendsoftypo3/jumpurl",
"type": "typo3-cms-extension",
"description": "TYPO3 Jump URL handling",
"homepage": "https://extensions.typo3.org/extension/jumpurl",
"support": {
"issues": "https://github.com/FriendsOfTYPO3/jumpurl/issues",
"source": "https://github.com/FriendsOfTYPO3/jumpurl",
"docs": "https://docs.typo3.org/p/friendsoftypo3/jumpurl/main/en-us/"
},
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"typo3/cms-frontend": "^9.0 || ^10.0 || ^11.0 || ^12.0"
},
"require-dev": {
"nimut/testing-framework": "^5.0",
"phpunit/phpunit": "^7.0",
"friendsofphp/php-cs-fixer": "^2.0",
"typo3/tailor": "^1.3"
},
"replace": {
"typo3-ter/jumpurl": "self.version"
},
"autoload": {
"psr-4": {
"FoT3\\Jumpurl\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FoT3\\Jumpurl\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "jumpurl",
"web-dir": ".Build/Web"
}
}
}