Add boilerplate code, Docker environment, Makefile etc.

This commit is contained in:
Lexi / Zoe 2021-07-23 03:18:33 +02:00
parent 1e9d351173
commit 114a67dbe4
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
21 changed files with 3766 additions and 0 deletions

35
composer.json Normal file
View file

@ -0,0 +1,35 @@
{
"name": "0xbd/mail-account-admin",
"description": "Web UI to administrate mail server accounts. Designed for the database scheme used on 0xbd.space mail servers.",
"type": "project",
"authors": [
{
"name": "binaryDiv",
"email": "binarydiv@gmail.com"
}
],
"config": {
"optimize-autoloader": true
},
"require": {
"php": "^7.3",
"ext-pdo": "*",
"slim/slim": "^4.8",
"slim/psr7": "^1.3",
"php-di/php-di": "^6.3",
"slim/twig-view": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"MailAccountAdmin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/Unit/"
}
}
}