-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
31 lines (31 loc) · 870 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
{
"name": "fuzzyma/contao-database-commands-bundle",
"description": "Commands to update the contao database or add an admin entry",
"type": "symfony-bundle",
"require": {
"symfony/console": "~2.8 || ~3.0 || ~4.0",
"contao/installation-bundle": ">= 1.1 < 5"
},
"autoload": {
"psr-4": {
"Fuzzyma\\Contao\\DatabaseCommandsBundle\\": ""
}
},
"license": "MIT",
"authors": [
{
"name": "Ulrich-Matthias Schäfer",
"email": "[email protected]"
}
],
"require-dev": {
"contao/manager-plugin": "^2.0",
"phpunit/phpunit": "^5.4"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"extra": {
"contao-manager-plugin": "Fuzzyma\\Contao\\DatabaseCommandsBundle\\ContaoManager\\Plugin"
}
}