forked from taniarascia/laconia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 904 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "taniarascia/laconia",
"type": "project",
"description": "An MVC framework written without libraries or frameworks (PHP).",
"keywords": [
"php",
"application",
"mvc",
"scratch",
"php7",
"oop",
"model-view-controller",
"object-oriented-programming",
"mysql",
"pdo",
"web app"
],
"homepage": "https://laconia.dev",
"license": "MIT",
"authors": [
{
"name": "Tania Rascia",
"homepage": "https://www.taniarascia.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/taniarascia/laconia/issues",
"source": "https://github.com/taniarascia/laconia"
},
"autoload": {
"classmap": [
"src/"
],
"files": [
"config/credentials.php",
"config/constants.php",
"config/utility.php"
]
},
"require": {
"php": ">=7.0"
},
"require-dev": {}
}