-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (59 loc) · 1.72 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
{
"name": "hov/jobfair",
"description": "Simple job market based on Extbase and Fluid. Basically works like dmmjobcontrol. There are list and detail views available. In addition, it is possible to set up an online application system. Furthermore, FE-Users can be enabled to add and edit jobs in the frontend, so to BE-Administration is required. Feeds (Rss091, Rss2, Atom) are also available",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"authors": [
{
"name": "Daniel Schill",
"email": "typo3dev@outlook.com"
},
{
"name": "Nikita Hovratov",
"email": "entwicklung@nikita-hovratov.de"
}
],
"require": {
"typo3/cms-core": "^11.5.3 || ^12.4",
"typo3/cms-backend": "^11.5.3 || ^12.4",
"typo3/cms-extbase": "^11.5.3 || ^12.4",
"typo3/cms-fluid": "^11.5.3 || ^12.4",
"typo3/cms-frontend": "^11.5.3 || ^12.4"
},
"extra": {
"typo3/cms": {
"extension-key": "jobfair",
"web-dir": ".Build/public"
}
},
"autoload": {
"psr-4": {
"Dan\\Jobfair\\": "Classes/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"ssch/typo3-rector": "^1.3",
"typo3/cms-extensionmanager": "^11.5.3 || ^12.4",
"typo3/cms-felogin": "^11.5.3 || ^12.4",
"typo3/cms-filelist": "^11.5.3 || ^12.4",
"typo3/cms-fluid-styled-content": "^11.5.3 || ^12.4",
"typo3/cms-install": "^11.5.3 || ^12.4",
"typo3/cms-lowlevel": "^11.5.3 || ^12.4",
"typo3/cms-tstemplate": "^11.5.3 || ^12.4"
},
"scripts": {
"pre-autoload-dump": [
"[ -d \"config\" ] || cp -a ./Build/config.example ./config"
]
}
}