-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.03 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
{
"name": "cpsit/cps-shortnr",
"description": "Builds links to pages and extension records with a tiny url",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"extension",
"Url",
"Shortener",
"Permanent"
],
"homepage": "https://github.com/CPS-IT/cps_shortnr",
"license": "GPL-2.0+",
"authors": [
{
"name": "Nicole Cordes",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^10.4 || ^11.5 || ^12.4"
},
"require-dev": {
"georgringer/news": "*"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Tool to automatically fix PHP coding standards issues"
},
"autoload": {
"psr-4": {
"CPSIT\\CpsShortnr\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"CPSIT\\CpsShortnr\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "cps_shortnr",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}