Dependencies

This commit is contained in:
2022-09-08 21:24:50 -04:00
parent 91886eca0f
commit 8beb07819c

View File

@ -1,13 +1,14 @@
{ {
"name": "provm/models", "name": "provm/models",
"description": "Model handling using j4mie/paris", "description": "Model with Repository for Database Mapping",
"type": "library", "type": "project",
"require": { "require": {
"j4mie/paris": "^1.5" "provm/database": "^2",
"provm/query_builder": "^1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^9.2", "phpunit/phpunit": "^9",
"kint-php/kint": "^3.3" "kint-php/kint": "^4"
}, },
"license": "prioprietary", "license": "prioprietary",
"authors": [ "authors": [
@ -17,8 +18,26 @@
} }
], ],
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"ProVM\\Common\\": "common" "ProVM\\": "src/"
} }
},
"repositories": [
{
"type": "git",
"url": "https://git.provm.cl/ProVM/database.git"
},
{
"type": "git",
"url": "https://git.provm.cl/ProVM/query_builder.git"
}
],
"config": {
"http-basic": {
"git.provm.cl": {
"username": "aldarien",
"password": "$&At'GQmd@Ul;=j@'2d#@N&H"
}
}
} }
} }