fixes to support composer / packagist

This commit is contained in:
Joey Kimsey
2024-08-08 01:48:28 -04:00
parent c95d837060
commit 9a2ade1857
68 changed files with 369 additions and 8612 deletions

View File

@ -1,10 +1,16 @@
{
"name": "thetempusproject/thetempusproject",
"description": "The aim of this project is to provide a simple and stable platform for rapidly prototyping new web applications.",
"type": "project",
"description": "The aim of this project is to provide a simple and stable platform for rapidly prototyping new web applications.",
"keywords":
[
"thetempusproject",
"framework"
],
"license": "MIT",
"homepage": "https://TheTempusProject.com",
"authors": [
"authors":
[
{
"name": "Joey Kimsey",
"email": "Joey@thetempusproject.com",
@ -12,19 +18,39 @@
"role": "Lead Developer"
}
],
"minimum-stability": "dev",
"require": {
"require":
{
"fortawesome/font-awesome": "4.7",
"thetempusproject/bedrock": "1.0",
"thetempusproject/canary": "1.0",
"thetempusproject/houdini": "1.0",
"thetempusproject/bedrock": "dev-main",
"thetempusproject/canary": "dev-main",
"thetempusproject/houdini": "dev-main",
"twbs/bootstrap": "3.3.7"
},
"autoload": {
"psr-4": {
"autoload":
{
"classmap":
[
"app/classes",
"app/functions",
"app/models"
],
"files":
[
"app/config/constants.php"
],
"psr-4":
{
"TheTempusProject\\Bedrock\\": "vendor/thetempusproject/bedrock",
"TheTempusProject\\Canary\\": "vendor/thetempusproject/canary",
"TheTempusProject\\Houdini\\": "vendor/thetempusproject/houdini"
}
}
}
},
"config":
{
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}