-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
53 lines (53 loc) · 1.37 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
{
"name": "codefog/contao-member_export",
"description": "Member Export bundle for Contao Open Source CMS",
"keywords": ["contao", "member", "export"],
"type": "contao-bundle",
"license": "MIT",
"authors": [
{
"name": "Codefog",
"homepage": "https://codefog.pl"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.3",
"codefog/contao-haste": "^5.1",
"league/csv": "^8.2 || ^9.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^2.2",
"phpunit/phpunit": "^10.0",
"php-coveralls/php-coveralls": "^2.5",
"phpoffice/phpspreadsheet": "^1.28"
},
"suggest": {
"phpoffice/phpspreadsheet": "^1.28"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Codefog\\MemberExportBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codefog\\MemberExportBundle\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "Codefog\\MemberExportBundle\\ContaoManager\\Plugin"
},
"replace": {
"contao-legacy/member_export": "self.version"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}