-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
32 lines (32 loc) · 991 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
{
"name": "group_3s/hotel-feedback-system",
"description": " REST API with Slim PHP Framework.",
"keywords": ["php", "slim-micro-framework", "rest-api", "mysql", "slim3", "slim", "rest", "api"],
"homepage": "https://github.com/nayananga/project_3s_server",
"require": {
"slim/slim": "^3.12.2",
"respect/validation": "^1.1",
"palanik/corsslim": "dev-slim3",
"vlucas/phpdotenv": "^2.4",
"predis/predis": "^1.1",
"ext-json": "*",
"ext-pdo": "*",
"google/apiclient": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpstan/phpstan": "^0.10.1"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit",
"database": "extras/bin/restart-api.sh",
"restart": "extras/bin/restart-api.sh"
}
}