forked from terminal42/contao-leads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.02 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
{
"name": "terminal42/contao-leads",
"description": "Leads extension for Contao Open Source CMS; Store and manage form data with ease!",
"keywords": ["contao", "form", "data", "store", "export"],
"type": "contao-module",
"license": "LGPL-3.0+",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "http://terminal42.ch"
}
],
"require": {
"php": "^5.3.2 || ^7.0",
"contao/core-bundle": "^3.5.1 || ^4.1",
"contao-community-alliance/composer-plugin": "^2.4.0 || 3.*",
"codefog/contao-haste": "^4.10.0",
"menatwork/contao-multicolumnwizard": "~3.2"
},
"require-dev": {
"phpoffice/phpexcel": "^1.8"
},
"suggest": {
"phpoffice/phpexcel": "To enable excel export of lead data."
},
"autoload": {
"psr-0": {
"Leads\\": "library/"
}
},
"extra": {
"contao": {
"sources": {
"": "system/modules/leads"
}
}
}
}