CLI/composer.json

27 lines
591 B
JSON
Raw Permalink Normal View History

2023-07-09 23:11:19 +00:00
{
"name": "mcnd/cli",
"description": "A middleware which captures CLI commands and executes them based on a preset definition.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dave Mc Nicoll",
"email": "info@mcnd.ca"
}
],
"require": {},
"autoload": {
"psr-4": {
"Mcnd\\CLI\\": "src/"
}
2023-11-16 03:13:22 +00:00
},
"extra": {
"lean": {
"autoload": {
"definitions": [
"meta/definitions.php"
]
}
}
2023-07-09 23:11:19 +00:00
}
2023-11-16 03:13:22 +00:00
}