-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.03 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.03 KB
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
68
{
"name": "fgtclb/academic-programs",
"type": "typo3-cms-extension",
"description": "Add structured data for academic programs to pages",
"minimum-stability": "stable",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "FGTCLB GmbH",
"email": "hello@fgtclb.com"
}
],
"support": {
"issues": "https://github.com/fgtclb/academic-extensions/issues",
"source": "https://github.com/fgtclb/academic-extensions",
"email": "hello@fgtclb.com"
},
"homepage": "https://www.fgtclb.com/",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "academic_programs",
"ignore-as-root": false,
"web-dir": ".Build/public",
"app-dir": ".Build"
},
"branch-alias": {
"dev-main": "2.1.x-dev"
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4",
"fgtclb/academic-base": "~2.3.3@dev",
"fgtclb/category-types": "~2.3.3@dev",
"typo3/cms-backend": "^12.4.22 || ^13.4",
"typo3/cms-core": "^12.4.22 || ^13.4",
"typo3/cms-extbase": "^12.4.22 || ^13.4",
"typo3/cms-fluid": "^12.4.22 || ^13.4",
"typo3/cms-frontend": "^12.4.22 || ^13.4"
},
"autoload": {
"psr-4": {
"FGTCLB\\AcademicPrograms\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FGTCLB\\AcademicPrograms\\Tests\\": "Tests/"
}
},
"suggest": {
"fgtclb/page-backend-layout": "Add backend category preview"
},
"conflict": {
"fgtclb/category-types": "<2.0.0",
"fgtclb/page-backend-layout": "<2.0.0 || >=3.0.0"
}
}