-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
31 lines (31 loc) · 922 Bytes
/
composer.json
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
29
30
31
{
"name": "canchito-dev/mini-framework-mvc",
"type": "project",
"description": "An extremely simple MVC framework written in PHP",
"keywords": ["skeleton", "boilerplate", "framework", "barebone", "application"],
"homepage": "https://github.com/canchito-dev/mini-framework-mvc",
"license": "MIT",
"authors": [
{
"name": "José Carlos Mendoza Prego",
"role": "Developer",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/canchito-dev/mini-framework-mvc/issues",
"source": "https://github.com/canchito-dev/mini-framework-mvc"
},
"require": {
"php": ">=5.3.0 <7.0",
"twig/twig": "1.*",
"phpmailer/phpmailer": "5.2.16"
},
"autoload": {
"classmap": [
"application/core",
"application/model",
"application/libs"
]
}
}