Files
models/composer.json

44 lines
984 B
JSON
Raw Normal View History

2020-07-22 14:06:53 -04:00
{
"name": "provm/models",
2022-09-08 21:24:50 -04:00
"description": "Model with Repository for Database Mapping",
"type": "project",
2020-07-22 14:06:53 -04:00
"require": {
2022-09-08 21:24:50 -04:00
"provm/database": "^2",
"provm/query_builder": "^1"
2020-07-22 14:06:53 -04:00
},
"require-dev": {
2022-09-08 21:24:50 -04:00
"phpunit/phpunit": "^9",
"kint-php/kint": "^4"
2020-07-22 14:06:53 -04:00
},
"license": "prioprietary",
"authors": [
{
"name": "Aldarien",
"email": "aldarien85@gmail.com"
}
],
"autoload": {
2022-09-08 21:24:50 -04:00
"psr-4": {
"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"
}
}
2020-07-22 14:06:53 -04:00
}
}