-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.09 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
{
"name": "lovecoding/slem-starter",
"description": "A template starter structure for Slim 3.x Framework (which build in MVC architecture)",
"keywords": ["template", "slim", "boilerplate", "mvc", "php", "api", "php MVC architecture", "slim framework"],
"license": "MIT",
"type": "project",
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"start": "php -S localhost:7777 -t public",
"test": "vendor\\bin\\phpunit tests"
},
"require": {
"illuminate/database": "^5.7",
"illuminate/events": "^5.7",
"monolog/monolog": "^1.23",
"slim/http-cache": "dev-master",
"slim/slim": "^3.11",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"robmorgan/phinx": "^0.10.6",
"symfony/var-dumper": "^4.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}