-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 934 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
{
"name": "kachnitel/ridetime-server",
"description": "RideTime app server",
"type": "project",
"require": {
"ext-pdo": "*",
"slim/slim": "^3.0",
"monolog/monolog": "^1.24",
"doctrine/orm": "^2.6",
"tuupola/slim-jwt-auth": "^3.2",
"codercat/jwk-to-pem": "^0.0.1",
"aws/aws-sdk-php": "^3.87",
"guzzlehttp/guzzle": "^6.3",
"emarref/guzzle-param-middleware": "^1.0",
"kevinrob/guzzle-cache-middleware": "^3.2",
"caseyamcl/guzzle_retry_middleware": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"symfony/phpunit-bridge": "^4.2"
},
"authors": [
{
"name": "Ondrej Vana",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"RideTimeServer\\": "src/",
"RideTimeServer\\Tests\\": "tests/"
}
}
}