-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.04 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
{
"name": "frostybee/slim-template",
"description": "A Slim framework skeleton for implementing REST-based Web services.",
"type": "project",
"homepage": "https://github.com/frostybee/slim-template",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"php",
"slim-micro-framework",
"rest-api",
"slim4",
"slim",
"rest",
"api"
],
"authors": [
{
"name": "FrostyBee",
"homepage": "https://github.com/frostybee",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"require": {
"php": "^8.2",
"ext-pdo": "*",
"ext-json": "*",
"slim/slim": "^4.13",
"guzzlehttp/guzzle": "^7.8",
"php-di/php-di": "^6.4",
"firebase/php-jwt": "^6.10",
"fig/http-message-util": "^1.1",
"monolog/monolog": "^2.9",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"start": "php -S localhost:8080 -t public public/index.php"
}
}