-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.41 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
46
47
48
49
50
51
{
"name": "avonnadozie/liteframe",
"description": "LiteFrame is a lightweight PHP framework designed to be fast, easy to setup with no requirement for shell/commands and still has the functionalities of a modern MVC framework.",
"homepage": "https://github.com/avonnadozie/LiteFrame",
"keywords": [
"framework",
"liteframe",
"lightweight",
"microframework",
"RedBeanPHP"
],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Victor Anuebunwa",
"email": "hello@victoranuebunwa.com",
"homepage": "https://victoranuebunwa.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"liteframe/liteframe-core": "^0.2.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.0",
"symfony/var-dumper": "^4.1",
"filp/whoops": "^2.3"
},
"autoload": {
"classmap": [
"components/libraries"
],
"psr-4": {
"Commands\\":"app/Commands",
"Controllers\\":"app/Controllers",
"Middlewares\\":"app/Middlewares",
"Models\\":"app/Models"
}
},
"config": {
"vendor-dir": "components/composer"
},
"scripts": {
"post-root-package-install": [
"@php cli make:env"
],
"test": "\"components/composer/bin/phpunit\""
}
}