-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 942 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "thetempusproject/tempusprojectcore",
"type": "library",
"description": "Tempus project core is intended as the core code 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": ["templating","mvc","framework"],
"homepage": "https://TheTempusProject.com/Core",
"authors": [
{
"name": "Joey Kimsey",
"email": "Joey@thetempusproject.com",
"homepage": "http://TheTempusProject.com",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.4.0",
"thetempusproject/tempusdebugger": "1.1"
},
"autoload": {
"classmap": [
"Classes",
"Core",
"Functions"
]
}
}