-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.26 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
{
"name": "adrosoftware/shared-slim-skeleton",
"description": "A simple skeleton to use slim on a shared server",
"type": "project",
"keywords": [
"php",
"slim",
"adrorocker",
"skeleton"
],
"homepage": "https://github.com/adrosoftware/slim-skeleton",
"license": "MIT",
"authors": [
{
"name": "Adro Rocker",
"email": "me@adro.rocks",
"homepage": "https://github.com/adrorocker"
}
],
"require": {
"php": ">=7.2",
"league/plates": "^3.3",
"php-di/slim-bridge": "^2.0",
"slim/slim": "^3.11",
"vlucas/phpdotenv": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"symfony/var-dumper": "^4.1"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
},
"files": [
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\""
]
}
}