forked from itx-informationssysteme/jobapplications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.3 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
{
"name": "itx/jobapplications",
"type": "typo3-cms-extension",
"description": "This extension enables you to manage job postings, has an application form for applicants to apply and an Application Managment Backend Module",
"license": "GPL-3.0-or-later",
"version": "2.2.0",
"homepage": "http://www.itx.de",
"authors": [
{
"name": "Stefanie D\u00f6ll",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Benjamin Jasper",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/typo3-itx/jobapplications/issues",
"docs": "https://docs.typo3.org/p/itx/jobapplications/master/en-us/"
},
"require": {
"php": ">=8",
"ext-openssl": "*",
"typo3/cms-core": "^11.5"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"typo3/cms-scheduler": "*",
"typo3/cms-dashboard": "*",
"typo3/cms-install": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "jobapplications"
}
},
"autoload": {
"psr-4": {
"ITX\\Jobapplications\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"ITX\\Jobapplications\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/jobapplications": "self.version"
}
}