This repository was archived by the owner on Mar 23, 2026. It is now read-only.
forked from CPS-IT/event-submission
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·79 lines (79 loc) · 1.79 KB
/
composer.json
File metadata and controls
executable file
·79 lines (79 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cpsit/event-submission",
"description": "Submit event proposals. This is an extension to the TYPO3 CMS",
"homepage": "https://github.com/CPS-IT/event-submission",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"extension",
"event",
"submission"
],
"authors": [
{
"name": "Dirk Wenzel",
"email": "d.wenzel@familie-redlich.de",
"role": "Maintainer"
},
{
"name": "Vladimir Falcón Piva",
"email": "v.falcon@familie-redlich.de",
"role": "Maintainer"
}
],
"repositories": {
"event-submission": {
"type": "vcs",
"url": "git@github.com:CPS-IT/event-submission.git"
}
},
"require": {
"typo3/cms-core": "^12.4 || ^13.4",
"nng/nnrestapi": ">=2.0",
"ramsey/uuid": "^4.0",
"georgringer/eventnews": ">=5.0",
"blueways/bw-jsoneditor": "2.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"typo3/testing-framework": "^7",
"phpunit/phpunit": "^9"
},
"extra": {
"typo3/cms": {
"extension-key": "event_submission",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"Cpsit\\EventSubmission\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Cpsit\\EventSubmission\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"composer/installers": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"mkdir -p .Build/log/coverage/",
"[ -L .Build/Web/typo3conf/ext/event_submission ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/event_submission"
],
"test:unit": [
".Build/bin/phpunit -c phpunit.xml --no-coverage"
],
"test:unit:coverage": ".Build/bin/phpunit -c phpunit.xml"
}
}