forked from Tuurlijk/t3ext-yaml-configuration
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
46 lines (46 loc) · 1.07 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": "supseven/yaml-configuration",
"type": "typo3-cms-extension",
"description": "Configure your TYPO3 site using YAML files. Export and import any table to and from a YAML file.",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Josef Glatz",
"email": "j.glatz@supseven.at",
"role": "Developer",
"homepage": "https://www.supseven.at"
},
{
"name": "Volker Kemeter",
"email": "v.kemeter@supseven.at",
"role": "Developer",
"homepage": "https://www.supseven.at"
},
{
"name": "Michiel Roos (Initial development for TYPO3 =< 8.7)",
"email": "michiel@michielroos.com",
"role": "Developer",
"homepage": "https://www.michielroos.com"
},
{
"name": "Josef Glatz (private)",
"email": "typo3@josefglatz.at",
"role": "Developer",
"homepage": "https://www.josefglatz.at"
}
],
"require": {
"typo3/cms-core": "^11 || ^12",
"symfony/yaml": "2.6 - 4.99 || ^5 || ^6"
},
"extra": {
"typo3/cms": {
"extension-key": "yaml_configuration"
}
},
"autoload": {
"psr-4": {
"Supseven\\YamlConfiguration\\": "Classes/"
}
}
}