inicializovany composer pre projekt,

instalovane balicky tpsoft/dbmodel a tpsoft/apilite.
vygenerovane subory dbmodel-files
This commit is contained in:
2026-02-09 06:51:07 +01:00
parent 36a1cb5704
commit d9a283cfdf
6 changed files with 258 additions and 0 deletions

27
backend/composer.json Normal file
View File

@ -0,0 +1,27 @@
{
"name": "tpsoft/nutrio",
"description": "Backend pre jedalnicky s vypoctom kalorii.",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"TPsoft\\Nutrio\\": "src/"
},
"files": [
"config/Configuration.php"
]
},
"authors": [
{
"name": "igor",
"email": "mino@tpsoft.org"
}
],
"require": {
"tpsoft/apilite": "^1.0",
"tpsoft/dbmodel": "^1.1"
},
"scripts": {
"model": "php scripts/createModel.php"
}
}