Files
hermes/composer.json
Joey Kimsey 4dbea74e5f Cleanup
Improved readme
removed contributing and code of conduct as they are basically just fluff when no one knows this repo exists
removed composer.lock because this repo doesn't install anything to lock
update copywrite to 2025
composer update to description
comments
2025-02-02 07:14:21 -05:00

40 lines
926 B
JSON

{
"name": "thetempusproject/hermes",
"type": "library",
"description": "This library handles redirects, provides a common backbone for routing, and can handle autoloading in cases where composer is unavailable.",
"license": "MIT",
"minimum-stability": "dev",
"keywords":
[
"php",
"tools",
"routing",
"thetempusproject"
],
"homepage": "https://git.thetempusproject.com/the-tempus-project/hermes",
"authors":
[
{
"name": "Joey Kimsey",
"email": "Joey@thetempusproject.com",
"homepage": "https://JoeyKimsey.com",
"role": "Lead Developer"
}
],
"require":
{
"php": ">=8.1.0"
},
"autoload":
{
"classmap":
[
"classes",
"functions"
],
"files":
[
"config/constants.php"
]
}
}