Files
bedrock/composer.json
2025-01-21 21:02:57 -05:00

42 lines
1.2 KiB
JSON

{
"name": "thetempusproject/bedrock",
"type": "library",
"description": "Bedrock is intended as the core functionality used by The Tempus Project: a rapid prototyping framework. This library utilizes the MVC architecture in addition to a custom templating engine designed to make building web applications simple.",
"license": "MIT",
"minimum-stability": "dev",
"keywords":
[
"mvc",
"framework"
],
"homepage": "https://git.thetempusproject.com/the-tempus-project/bedrock",
"authors":
[
{
"name": "Joey Kimsey",
"email": "Joey@thetempusproject.com",
"homepage": "https://JoeyKimsey.com",
"role": "Lead Developer"
}
],
"require":
{
"php": ">=8.1.0",
"thetempusproject/canary": "1.0.6",
"thetempusproject/hermes": "1.0.3",
"thetempusproject/houdini": "2.0.1"
},
"autoload":
{
"psr-4":
{
"TheTempusProject\\Bedroock\\Classes\\": "Classes",
"TheTempusProject\\Bedroock\\Functions\\": "Functions"
},
"files":
[
"Config/constants.php",
"Bin/Bedrock.php"
]
}
}