-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 945 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 945 Bytes
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
{
"name": "codeeasy/slim-framework-skeleton",
"description": "Slim Framework skeleton by Code Easy",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Felipe Vieira",
"email": "felipe@codeeasy.com.br"
}
],
"autoload": {
"psr-4": {
"App\\": "src/",
"Test\\": "tests/"
},
"files": [
"config/env.php",
"config/helpers.php"
]
},
"require": {
"php": "^7.4",
"slim/slim": "4.*",
"ext-json": "*",
"slim/psr7": "^1.1",
"nyholm/psr7": "^1.3",
"nyholm/psr7-server": "^1.0",
"guzzlehttp/psr7": "^1.6",
"http-interop/http-factory-guzzle": "^1.0",
"laminas/laminas-diactoros": "^2.3",
"php-di/php-di": "^6.2",
"vlucas/phpdotenv": "^5.1",
"twig/twig": "^3.0"
},
"require-dev": {
"vimeo/psalm": "^3.12",
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.2",
"symfony/var-dumper": "^5.2"
}
}