lean/composer.json

113 lines
3.2 KiB
JSON
Raw Normal View History

2020-09-25 17:55:35 +00:00
{
"name": "mcnd/lean",
"description": "A more-than-micro framework for basic apps",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dave Mc Nicoll",
"email": "info@mcnd.ca"
2020-09-25 17:55:35 +00:00
}
],
"require": {
2023-05-31 18:06:19 +00:00
"php": "^8.2",
2020-09-25 17:55:35 +00:00
"php-di/php-di": "dev-master",
2023-05-31 18:06:19 +00:00
"ext-json": "*",
"ext-posix": "*",
"ext-xmlreader": "*",
"ext-fileinfo": "*",
"league/route": "^5.0.0-dev",
"laminas/laminas-diactoros": "2.24.x-dev",
"laminas/laminas-httphandlerrunner": "2.5.x-dev",
2023-05-31 18:06:19 +00:00
"vlucas/phpdotenv": "^3.4@dev",
"middlewares/whoops": "dev-master",
"ralouphie/getallheaders": "dev-master",
"guzzlehttp/guzzle": "^6.3@dev",
"swiftmailer/swiftmailer": "^6.2@dev",
"mcnd/storage": "dev-master",
2023-05-31 18:06:19 +00:00
"mcnd/lean": "dev-master",
"mcnd/lean-console": "dev-master",
"mcnd/ulmus": "dev-master",
"mcnd/picea": "dev-master",
"mcnd/picea-ui": "dev-master",
"mcnd/cronard": "dev-master",
"mcnd/tell": "dev-master",
"mcnd/dump": "dev-master",
2023-05-31 18:06:19 +00:00
"mcnd/event": "dev-master",
"mcnd/notes-cronard": "dev-master",
"mcnd/notes-event": "dev-master",
"mcnd/notes-tell": "dev-master",
"mcnd/notes-route": "dev-master",
"mcnd/notes-security": "dev-master",
2023-05-31 18:06:19 +00:00
"mcnd/ulmus-user": "dev-master",
"mcnd/thebugs": "dev-master",
"mcnd/taxus": "dev-master",
"mcnd/imagine": "dev-master",
"mcnd/notes-breadcrumb": "dev-master",
"psr/simple-cache": "*"
2020-09-25 17:55:35 +00:00
},
"repositories": [
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/cronard.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/storage.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/ulmus.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/picea.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/picea-ui.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/notes.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/notes-route.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/notes-security.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/notes-tell.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/tell.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/lean-console.git"
},
{
"type": "vcs",
"url": "https://git.mcnd.ca/mcndave/dump.git"
}
],
2020-09-25 17:55:35 +00:00
"autoload": {
"psr-4": {
"Lean\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"Lean\\Composer::postInstall"
],
"post-update-cmd": [
"Lean\\Composer::postUpdate"
]
2020-09-25 17:55:35 +00:00
}
}