-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.75 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nguyenanhung/slim-3-hmvc-skeleton",
"description": "A Slim Framework 3 skeleton Hierarchical Model View Controller application for rapid development",
"keywords": [
"micro framework",
"php micro framework",
"slim",
"slim 3",
"skeleton",
"rest",
"console",
"router",
"psr7",
"hmvc",
"mvc",
"modular",
"Hierarchical Model View Controller"
],
"type": "project",
"homepage": "http://github.com/nguyenanhung/slim-3-hmvc-skeleton",
"license": "MIT",
"authors": [
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com"
}
],
"require": {
"php": ">=5.5.0",
"ext-pdo": "*",
"ext-json": "*",
"slim/slim": "^3.1",
"slim/pdo": "^1.10",
"slim/flash": "^0.4",
"slim/csrf": "^0.8",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.23",
"symfony/console": "3.4.17"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0",
"kint-php/kint": "^3.0"
},
"autoload": {
"psr-4": {
"App\\": "src/App/",
"App\\Command\\": "src/Commands/",
"App\\Library\\": "src/Library/",
"App\\Helper\\": "src/Helper/",
"App\\Config\\": "src/Config/",
"Modules\\": "src/Modules/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "./vendor/bin/phpunit",
"worker": "php cli.php"
}
}