-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
44 lines (44 loc) · 1.05 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
{
"name": "gac/good-food-tracker-api",
"description": "Good food tracker project is an app meant to give you recommendation about where to go for your next meal",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Igor Ilic",
"email": "[email protected]",
"homepage": "https://igorilic.net",
"role": "developer"
}
],
"scripts": {
"swagger": "php ./vendor/bin/openapi -o swagger.json ./src --bootstrap swagger-constants.php"
},
"autoload": {
"psr-4": {
"Gac\\GoodFoodTracker\\": "./src"
},
"classmap": [
"src/Core/Utility/"
],
"files": [
"src/utility.php",
"src/Core/Utility/helpers.php"
]
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"gac/routing": "^v3.0",
"firebase/php-jwt": "^6.0",
"vlucas/phpdotenv": "^5.3",
"ramsey/uuid": "^4.1",
"phpmailer/phpmailer": "^6.5",
"ext-pdo": "*",
"predis/predis": "^1.1"
},
"require-dev": {
"zircote/swagger-php": "^4.0",
"jetbrains/phpstorm-attributes": "^1.0"
}
}