negundo-client/composer.json

35 lines
845 B
JSON
Raw Permalink Normal View History

2023-03-29 13:52:15 +00:00
{
2023-03-29 17:39:17 +00:00
"name": "mcnd/negundo-client",
"description": "Negundo client which allow sending dump(), error and tasks reports",
"keywords": ["negundo","dev","debug","psr15","middleware"],
2023-11-04 00:03:34 +00:00
"type": "library",
2023-03-29 13:52:15 +00:00
"license": "MIT",
"authors": [
{
"name": "Dave Mc Nicoll",
2023-03-29 17:39:17 +00:00
"email": "info@mcnd.ca"
2023-03-29 13:52:15 +00:00
}
],
"autoload": {
"psr-4": {
2023-03-29 17:46:46 +00:00
"Negundo\\Client\\": "src/"
2023-03-29 13:52:15 +00:00
}
2023-11-04 00:03:34 +00:00
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*"
},
"extra" : {
"lean" : {
"autoload": {
"definitions" : [
"meta/negundo.php"
2024-03-13 13:08:37 +00:00
],
"config": [
"meta/config.php"
2023-11-04 00:03:34 +00:00
]
}
}
2023-03-29 13:52:15 +00:00
}
}