-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 915 Bytes
/
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
{
"name": "punktde/typo3-yaml-loader",
"type": "typo3-cms-extension",
"description": "Load content types and doktypes from yaml",
"homepage": "https://www.punkt.de",
"version": "1.0.2",
"license": "MIT",
"require": {
"typo3/cms-core": "^12.4",
"symfony/validator": "^6.3"
},
"authors": [
{
"name": "Jan-Michael Löw",
"email": "[email protected]"
}
],
"extra": {
"typo3/cms": {
"extension-key": "typo3_yaml_loader"
}
},
"autoload": {
"psr-4": {
"PunktDe\\Typo3YamlLoader\\": "Classes"
}
},
"require-dev": {
"phpunit/phpunit": "^10",
"typo3/testing-framework": "^8.0"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}