DBmodel/composer.json

33 lines
598 B
JSON

{
"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/"
}
}
}