-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1020 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
38
39
40
41
42
{
"name": "bsoliveira/slimapi",
"description": "An example web application API using Slim PHP micro framework",
"keywords": [
"rest",
"api",
"example",
"jwt",
"authentication",
"slim"
],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Bruno Silva Oliveira",
"homepage": "https://github.com/bsoliveira"
}
],
"require": {
"php": "^7.4 || ^8.0",
"slim/slim": "^4.9",
"slim/psr7": "^1.5",
"php-di/php-di": "^6.3",
"monolog/monolog": "^2.3",
"atlas/query": "^1.3",
"vlucas/valitron": "^1.4",
"firebase/php-jwt": "^6.0",
"vlucas/phpdotenv": "^5.4",
"neomerx/cors-psr7": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env'); \""
]
}
}