inital commit based on contao skeleton bundle

This commit is contained in:
2021-04-20 22:45:53 +02:00
commit 124cd52cc1
11 changed files with 428 additions and 0 deletions

28
composer.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "jr/fals-bundle",
"type": "contao-bundle",
"description": "FALS improvements for contao.",
"homepage": "https://www.fals.de",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Jens REy",
"homepage": "https://www.rey.nrw"
}
],
"require": {
"php": "^7.2 || ^8.0",
"contao/core-bundle": "^4.9",
"symfony/config": "^4.4 || ^5.1",
"symfony/dependency-injection": "^4.4 || ^5.1",
"symfony/http-kernel": "^4.4 || ^5.1"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Jr\\FalsBundle\\": "src/"
}
}
}