This commit is contained in:
Joey Kimsey
2024-08-07 19:21:34 -04:00
parent 8dc1a51753
commit 0627207452
10 changed files with 2163 additions and 80 deletions

27
composer.json Normal file
View File

@ -0,0 +1,27 @@
{
"name": "thetempusproject/tempusdebugger",
"type": "library",
"description": "Framework for sending php messages to chrome for in-browser debugging.",
"license": "MIT",
"minimum-stability": "dev",
"keywords": ["php","tools","debugging","thetempusproject"],
"homepage": "https://github.com/TheTempusProject/TempusDebugger",
"authors": [
{
"name": "Joey Kimsey",
"email": "Joey@thetempusproject.com",
"homepage": "https://TheTempusProject.com",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"autoload": {
"classmap": [
"TempusDebugger.php",
"TempusTools.php"
]
}
}