-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
37 lines (36 loc) · 1018 Bytes
/
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": "HelloSlim3",
"description": "A starter kit for small PHP Projects",
"keywords": ["slimframework", "starter", "twig","doctrine", "bootstrap"],
"homepage": "https://github.com/napolux/helloslim3",
"license": "MIT",
"authors": [
{
"name": "Francesco Napoletano",
"email": "[email protected]",
"homepage": "https://napolux.com/"
}
],
"require-dev": {
"guzzlehttp/guzzle": "~6.0",
"symfony/css-selector": "dev-master"
},
"require": {
"php": ">=5.6.0",
"slim/slim": "^3.5",
"slim/php-view": "^2.2.0",
"monolog/monolog": "^1.17",
"slim/twig-view": "^2.1",
"slim/http-cache": "^0.3.0",
"tuupola/slim-basic-auth": "^2.0",
"slim/flash": "dev-master",
"doctrine/orm": "^2.5",
"symfony/dom-crawler": "^3.1",
"vlucas/phpdotenv": "^2.3"
},
"autoload": {
"psr-4": {
"HELLO\\": "src"
}
}
}