Add boilerplate code, Docker environment, Makefile etc.
This commit is contained in:
parent
1e9d351173
commit
114a67dbe4
21 changed files with 3766 additions and 0 deletions
35
composer.json
Normal file
35
composer.json
Normal 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/"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue