fixes to support composer / packagist

This commit is contained in:
Joey Kimsey
2024-08-08 01:18:19 -04:00
parent 0627207452
commit bfe714b179
6 changed files with 67 additions and 18 deletions

View File

@ -1,27 +1,40 @@
{
"name": "thetempusproject/tempusdebugger",
"name": "thetempusproject/canary",
"type": "library",
"description": "Framework for sending php messages to chrome for in-browser debugging.",
"description": "Functionality for tracking, logging, and sending log messages to chrome for debugging.",
"license": "MIT",
"minimum-stability": "dev",
"keywords": ["php","tools","debugging","thetempusproject"],
"homepage": "https://github.com/TheTempusProject/TempusDebugger",
"authors": [
"keywords":
[
"php",
"tools",
"debugging",
"thetempusproject"
],
"homepage": "https://git.thetempusproject.com/the-tempus-project/canary",
"authors":
[
{
"name": "Joey Kimsey",
"email": "Joey@thetempusproject.com",
"homepage": "https://TheTempusProject.com",
"homepage": "https://JoeyKimsey.com",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.4.0"
"require":
{
"php": ">=8.1.0"
},
"autoload": {
"classmap": [
"TempusDebugger.php",
"TempusTools.php"
"autoload":
{
"psr-4":
{
"TheTempusProject\\Canary\\Classes\\": "classes"
},
"files":
[
"config/constants.php",
"bin/canary.php"
]
}
}
}