-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
93 lines (93 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "in2code/in2studyfinder",
"type": "typo3-cms-extension",
"description": "List of master's and bachelor's degree programs for colleges and universities",
"keywords": [
"TYPO3",
"extension"
],
"homepage": "https://www.in2code.de/produkte/studiengangsfinder/",
"authors": [
{
"name": "Sandra Pohl",
"email": "[email protected]",
"role": "Product owner",
"homepage": "https://www.in2code.de"
},
{
"name": "Sebastian Stein",
"role": "Technical owner",
"homepage": "https://www.in2code.de"
}
],
"license": "GPL-2.0+",
"require": {
"php": "^8.1",
"ext-json": "*",
"typo3/cms-core": "^12"
},
"require-dev": {
"helhum/typo3-console": "^8.0",
"roave/security-advisories": "dev-latest",
"typo3/cms-backend": "^12",
"typo3/cms-belog": "^12",
"typo3/cms-extbase": "^12",
"typo3/cms-extensionmanager": "^12",
"typo3/cms-filelist": "^12",
"typo3/cms-fluid": "^12",
"typo3/cms-fluid-styled-content": "^12",
"typo3/cms-frontend": "^12",
"typo3/cms-install": "^12",
"typo3/cms-recordlist": "^12",
"typo3/cms-rte-ckeditor": "^12",
"typo3/cms-tstemplate": "^12",
"typo3/cms-lowlevel": "^12",
"typo3/testing-framework": "^7",
"phpmd/phpmd": "^2",
"phpcompatibility/php-compatibility": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"In2code\\In2studyfinder\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"In2code\\In2studyfinder\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/",
"[ -L .build/public/typo3conf/ext/in2studyfinder ] || ln -snvf ../../../../. .build/public/typo3conf/ext/in2studyfinder",
"@package-states",
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"package-states": [
".build/bin/typo3 install:fixfolderstructure"
],
"install-hooks": ["sh ./.github/hooks/setup.sh"],
"post-install-cmd": ["@install-hooks"],
"post-update-cmd": ["@install-hooks"]
},
"extra": {
"typo3/cms": {
"extension-key": "in2studyfinder",
"web-dir": ".build/public"
}
}
}