minimal/composer.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2021-09-25 23:26:08 +07:00
{
"name": "mirzaev/minimal",
"type": "framework",
"description": "Lightweight MVC framework that manages only the basic mechanisms, leaving the development of the programmer and not overloading the project",
2021-09-25 23:26:08 +07:00
"keywords": [
"mvc",
"framework"
],
"license": "WTFPL",
"homepage": "https://git.mirzaev.sexy/mirzaev/minimal",
2021-09-25 23:26:08 +07:00
"authors": [
{
"name": "Arsen Mirzaev Tatyano-Muradovich",
"email": "arsen@mirzaev.sexy",
"homepage": "https://mirzaev.sexy",
"role": "Developer"
}
],
"support": {
"docs": "https://git.mirzaev.sexy/mirzaev/minimal/wiki",
"issues": "https://git.mirzaev.sexy/mirzaev/minimal/issues"
2021-09-25 23:26:08 +07:00
},
"require": {
"php": "~8.1"
2021-09-25 23:26:08 +07:00
},
"suggest": {
"ext-PDO": "To work with SQL-based databases (MySQL, PostreSQL...)"
2021-09-25 23:26:08 +07:00
},
"autoload": {
"psr-4": {
"mirzaev\\minimal\\": "mirzaev/minimal/system"
}
},
"autoload-dev": {
"psr-4": {
"mirzaev\\minimal\\tests\\": "mirzaev/minimal/tests"
}
}
}