forked from knusperpixel/typo3api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.11 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
{
"name": "nemo64/typo3api",
"type": "typo3-cms-extension",
"license": "MIT",
"keywords": [
"TYPO3",
"api",
"TCA",
"tsconfig",
"ext_tables.php",
"ext_localconf.php"
],
"support": {
"issues": "https://github.com/Nemo64/typo3api/issues"
},
"authors": [
{
"name": "Marco Pfeiffer",
"role": "Developer",
"homepage": "https://www.marco.zone/"
}
],
"extra": {
"typo3/cms": {
"web-dir": "web",
"extension-key": "typo3api"
}
},
"require": {
"php": "^7.4",
"symfony/intl": "^5",
"symfony/options-resolver": "^5",
"symfony/polyfill-mbstring": "^1",
"symfony/polyfill-php80": "^1.23.0",
"typo3/cms-backend": "^10.4",
"typo3/cms-core": "^10.4",
"typo3/cms-extbase": "^10.4",
"typo3/cms-frontend": "^10.4",
"typo3/cms-install": "^10.4",
"typo3/cms-lang": "^10.4"
},
"autoload": {
"psr-4": {
"Typo3Api\\": "Classes"
}
},
"require-dev": {
"friendsoftypo3/phpstan-typo3": "^0.8.1",
"symplify/easy-coding-standard": "^9.3",
"typo3/testing-framework": "^6.8"
},
"autoload-dev": {
"psr-4": {
"Typo3Api\\": "Tests"
}
},
"config": {
"sort-packages": true
}
}