-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 834 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
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
{
"name": "steadweb/flypay",
"description": "A technical test for FlyPay",
"license": "MIT",
"authors": [
{
"name": "Luke Steadman",
"email": "ljsteadman@gmail.com"
}
],
"autoload": {
"psr-4": {
"Steadweb\\Flypay\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Steadweb\\Flypay\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.0",
"firebase/php-jwt": "dev-master",
"slim/slim": "^3.0",
"doctrine/migrations": "^1.4",
"doctrine/orm": "^2.5",
"vlucas/phpdotenv": "^2.4",
"monolog/monolog": "^1.22"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^0.9.7",
"doctrine/data-fixtures": "^1.2"
}
}