Files
thetempusproject/composer.json
2024-08-21 06:14:54 -04:00

62 lines
1.6 KiB
JSON

{
"name": "thetempusproject/thetempusproject",
"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":
[
{
"name": "Joey Kimsey",
"email": "Joey@thetempusproject.com",
"homepage": "https://TheTempusProject.com",
"role": "Lead Developer"
}
],
"require":
{
"fortawesome/font-awesome": "4.7",
"thetempusproject/bedrock": "1.0.9",
"thetempusproject/canary": "1.0.5",
"thetempusproject/houdini": "1.0.8",
"twbs/bootstrap": "3.3.7"
},
"autoload":
{
"files":
[
"app/functions/common.php"
],
"classmap":
[
"app/classes",
"app/models"
],
"psr-4":
{
"TheTempusProject\\Bedrock\\": "vendor/thetempusproject/bedrock",
"TheTempusProject\\Canary\\": "vendor/thetempusproject/canary",
"TheTempusProject\\Houdini\\": "vendor/thetempusproject/houdini"
}
},
"scripts":
{
"post-root-package-install":
[
"@php -r \"file_exists('docker/.env') || copy('docker/.env.example', '.env');\""
]
},
"config":
{
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}