-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.84 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
{
"name": "skilldisplay/typo3-skilldisplay",
"description": "SkillDisplay integration for TYPO3",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/SkillDisplay/TYPO3ContentElements",
"support": {
"email": "coding@daniel-siepmann.de",
"source": "https://github.com/SkillDisplay/TYPO3ContentElements",
"issues": "https://github.com/SkillDisplay/TYPO3ContentElements/issues"
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "coding@daniel-siepmann.de"
}
],
"autoload": {
"psr-4": {
"SkillDisplay\\SkilldisplayContent\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"SkillDisplay\\SkilldisplayContent\\Tests\\": "Tests/"
}
},
"require": {
"php": "^7.4 || ^8.1 || ^8.2",
"skilldisplay/phptoolkit": "^2.1.1",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-frontend": "^11.5 || ^12.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.18",
"phpstan/phpstan-phpunit": "*",
"phpstan/extension-installer": "^1.0",
"saschaegerer/phpstan-typo3": "^0.13.1",
"typo3/testing-framework": "^7",
"phpspec/prophecy-phpunit": "^2",
"jangregor/phpstan-prophecy": "^0.8.0"
},
"extra": {
"typo3/cms": {
"extension-key": "skilldisplay_content",
"web-dir": ".Build/web"
},
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
}
}