-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.62 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"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": "^13.4",
"typo3/cms-backend": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-fluid": "^13.4",
"typo3/cms-frontend": "^13.4"
},
"extra": {
"typo3/cms": {
"extension-key": "jobfair",
"web-dir": ".Build/public"
}
},
"autoload": {
"psr-4": {
"Dan\\Jobfair\\": "Classes/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^2.1",
"ssch/typo3-rector": "^3",
"typo3/cms-extensionmanager": "^13.4",
"typo3/cms-felogin": "^13.4",
"typo3/cms-filelist": "^13.4",
"typo3/cms-fluid-styled-content": "^13.4",
"typo3/cms-install": "^13.4",
"typo3/cms-lowlevel": "^13.4",
"typo3/cms-tstemplate": "^13.4"
},
"scripts": {
"pre-autoload-dump": [
"[ -d \"config\" ] || cp -a ./Build/config.example ./config"
]
}
}