-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.27 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "markocupic/import-from-csv-bundle",
"description": "Backend extension for the Contao Open Source CMS. Import data records from a CSV spreadsheet.",
"keywords": [
"contao",
"import from csv",
"spreadsheet"
],
"type": "contao-module",
"license": "MIT",
"authors": [
{
"name": "Marko Cupic",
"homepage": "https://github.com/markocupic/import-from-csv-bundle"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.0",
"league/csv": "^9.1"
},
"require-dev": {
"contao/easy-coding-standard": "^5.0",
"contao/manager-plugin": "^2.3.1",
"contao/test-case": "^4.6",
"phpunit/phpunit": "^9.3",
"symfony/phpunit-bridge": "^5.4"
},
"autoload": {
"psr-4": {
"Markocupic\\ImportFromCsvBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Markocupic\\ImportFromCsvBundle\\ContaoManager\\Plugin"
},
"config": {
"allow-plugins": {
"contao/manager-plugin": true,
"contao-components/installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}