forked from frappant/frp_form_answers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.59 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
{
"name": "frappant/frp-form-answers",
"type": "typo3-cms-extension",
"description": "Adds the possibility, as a finisher, to save and export the form entries from customers.",
"homepage": "https://frappant.ch",
"require": {
"typo3/cms-core": "^11.5",
"phpoffice/phpspreadsheet": "^1.22"
},
"license": "GPL-2.0+",
"require-dev": {
"mikey179/vfsstream": "~1.6.0",
"phpunit/phpunit": "^5.6",
"phplint/phplint": "^0.0.1",
"nimut/testing-framework": "^1.1"
},
"autoload": {
"psr-4": {
"Frappant\\FrpFormAnswers\\": "Classes",
"Psr\\SimpleCache\\": "Resources/Private/Vendors/SimpleCache/src/"
}
},
"autoload-dev": {
"psr-4": {
"Frappant\\FrpFormAnswers\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/frp_form_answers ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/frp_form_answers"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web",
"extension-key": "frp_form_answers"
}
}
}