-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.11 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
{
"name": "virtuagora/virtuagora-api",
"description": "A Slim Framework skeleton application for Virtuagora development",
"keywords": [
"microframework",
"rest",
"router",
"psr7"
],
"homepage": "https://virtuagora.org",
"require": {
"php": ">=7.1",
"ext-json": "*",
"firebase/php-jwt": "^5.0",
"google/recaptcha": "^1.2",
"grimzy/laravel-mysql-spatial": "^2.1",
"guzzlehttp/guzzle": "^6.2",
"hansott/psr7-cookies": "^3.0",
"illuminate/database": "^5.8",
"illuminate/mail": "^5.8",
"monolog/monolog": "^1.24",
"opis/json-schema": "^1.0",
"php-di/php-di": "^6.0",
"slim/psr7": "^0.5",
"slim/slim": "^4.1"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S 0.0.0.0:8000 -t public",
"test": "phpunit"
}
}