-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
56 lines (56 loc) · 1.27 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
{
"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",
"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/main/en-us/"
},
"require" : {
"php" : ">=8.2",
"ext-openssl" : "*",
"typo3/cms-core" : "^13"
},
"require-dev" : {
"phpstan/phpstan" : "^1.4",
"typo3/cms-scheduler" : "*",
"typo3/cms-dashboard" : "*",
"typo3/cms-install" : "*"
},
"suggest" : {
"typo3/cms-dashboard" : "*"
},
"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"
}
}