rename p1

This commit is contained in:
Joey Kimsey
2025-02-03 12:29:16 -05:00
parent 394e752094
commit 20f09e6789
29 changed files with 0 additions and 0 deletions

44
renamed/composer.json Normal file
View File

@ -0,0 +1,44 @@
{
"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":
[
"thetempusproject",
"php",
"mvc",
"framework"
],
"homepage": "https://thetempusproject.com/libraries/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.7",
"thetempusproject/hermes": "1.0.5",
"thetempusproject/houdini": "2.0.3"
},
"autoload":
{
"psr-4":
{
"TheTempusProject\\Bedroock\\Classes\\": "Classes",
"TheTempusProject\\Bedroock\\Functions\\": "Functions"
},
"files":
[
"Config/constants.php",
"Bin/Bedrock.php"
]
}
}