forked from inphinit/inphinit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 940 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
{
"name": "inphinit/inphinit",
"description": "A framework for easy creation of routes",
"keywords": [ "framework", "routing", "url", "http", "dom", "rest", "api" ],
"license": "MIT",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"vendor-dir": "system/vendor"
},
"authors": [
{
"name": "Guilherme Nascimento",
"email": "brcontainer@yahoo.com.br"
}
],
"require": {
"php": ">=5.3.0",
"inphinit/framework": "^0.5"
},
"autoload": {
"psr-4": {
"Controller\\": "system/application/Controller",
"Model\\": "system/application/Model"
}
},
"scripts": {
"post-update-cmd": [
"php system/boot/importpackages.php"
],
"post-create-project-cmd": [
"php system/boot/createbuiltin.php"
]
}
}