This repository was archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.36 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.36 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
52
53
{
"name": "slim/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"keywords": ["microframework", "rest", "router", "psr7"],
"homepage": "http://github.com/slimphp/Slim-Skeleton",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "info@joshlockhart.com",
"homepage": "http://www.joshlockhart.com/"
}
],
"require": {
"php": ">=5.6",
"fzaninotto/faker": "^1.8",
"illuminate/database": "^5.8",
"illuminate/pagination": "^5.8",
"monolog/monolog": "^1.17",
"robmorgan/phinx": "^0.10.8",
"slim/php-view": "^2.0",
"slim/slim": "^3.1",
"symfony/var-dumper": "^4.3",
"vlucas/phpdotenv": "^3.4",
"vlucas/valitron": "^1.4"
},
"autoload": {
"files": [
"helpers/dd.php",
"helpers/env.php"
],
"psr-4": {
"App\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": ">=5.0"
},
"autoload-dev": {
"classmap": ["database/"],
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}