-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 887 Bytes
/
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
{
"name": "patrickbroens/pbsurvey",
"type": "typo3-cms-extension",
"description": "Take surveys from the visitors of your website. The results can be exported to a csv-file to analyze in Microsoft Excel or the statistical program SPSS or it's open source concurrent PSPP.",
"keywords": [
"TYPO3",
"survey",
"questionnaire"
],
"authors": [
{
"name": "Patrick Broens",
"email": "[email protected]",
"homepage": "https://github.com/patrickbroens"
}
],
"version": "2.0.0",
"require": {
"typo3/cms-core": "*"
},
"replace": {
"pbsurvey": "self.version",
"typo3-ter/pbsurvey": "self.version"
},
"autoload": {
"psr-4": {
"PatrickBroens\\Pbsurvey\\": "Classes/"
}
},
"homepage": "https://github.com/patrickbroens/TYPO3.pbsurvey",
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/patrickbroens/TYPO3.pbsurvey/issues"
}
}