Changed namespaces and added Query Builder

Co-authored-by: Juan Pablo Vial <jpvial@goacegroup.com>
Reviewed-on: #2
This commit is contained in:
2025-09-30 17:34:06 -03:00
parent 1bd3ccb8db
commit f6937c3aee
29 changed files with 555 additions and 178 deletions

View File

@ -1,23 +1,33 @@
{
"name": "provm/database",
"type": "library",
"authors": [
{
"name": "Aldarien",
"email": "aldarien85@gmail.com"
}
],
"require": {
"php": ">=8",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"kint-php/kint": "^5.0"
},
"autoload": {
"psr-4": {
"ProVM\\": "src/"
}
"name": "provm/database",
"type": "library",
"version": "1.2.0",
"authors": [
{
"name": "Aldarien",
"email": "aldarien85@gmail.com"
}
],
"require": {
"php": ">=8",
"ext-pdo": "*",
"provm/query_builder": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Database\\": "src/"
}
},
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "vcs",
"url": "https://git.provm.cl/ProVM/query_builder.git"
}
]
}