diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4c5a78b --- /dev/null +++ b/composer.json @@ -0,0 +1,32 @@ +{ + "name": "tpsoft/dbmodel", + "license": "GPL-3.0-or-later", + "description": "This library extends the builtin PDO object by several useful features. ", + "type": "library", + "readme": "README.md", + "keywords": ["db", "model", "pdo"], + "authors": [ + { + "name": "Igor Mino", + "email": "mino@tpsoft.org", + "homepage": "https://www.tpsoft.org", + "role": "Developer" + } + ], + "funding": [ + { + "type": "other", + "url": "https://www.anycoin.cz/donate/igormino" + } + ], + "require": { + "php": ">=8.2", + "ext-pdo": "*" + }, + "autoload": { + "psr-4": { + "TPsoft\\DBmodel\\": "src/" + } + } + +} diff --git a/src/DBmodel.php b/src/DBmodel.php index cc0fc86..850c3ff 100644 --- a/src/DBmodel.php +++ b/src/DBmodel.php @@ -2,9 +2,10 @@ /* Copyright (c) TPsoft.org 2000-2025 Author: Ing. Igor Mino - License: GNU GPL-3.0 and later + License: GNU GPL-3.0 or later Description: This library extends the builtin PDO object by several useful features. + Version: 1.0.0 Milestones: 2015-10-09 23:52 Igor - Created for Beteha