forked from mia3/crossmedia_fourallportal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.46 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
62
63
64
65
66
67
{
"name": "crossmedia/fourallportal",
"type": "typo3-cms-extension",
"description": "The Official 4ALLPORTAL Package",
"authors": [
{
"name": "Marc Neuhaus",
"role": "Developer"
},
{
"name": "Eyad Abdullah",
"role": "Developer",
"email": "e.abdullah@4allportal.com",
"homepage": "https://4allportal.com/"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.4",
"typo3/cms-backend": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-scheduler": "^12.4",
"typo3/cms-filemetadata": "^12.4",
"ext-pdo": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Crossmedia\\Fourallportal\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Crossmedia\\Fourallportal\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "fourallportal"
}
},
"config": {
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"install-extension-setup": [
"typo3 extension:setup"
],
"install-updateschema": [
"typo3 database:updateschema"
]
}
}