-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (39 loc) · 926 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "ilaboauife/voucher-service",
"description": "A Voucher Management Service",
"type": "project",
"keywords": ["voucher", "service", "api"],
"authors": [
{
"name": "Perfect Makanju",
"email": "[email protected]",
"homepage": "https://about.me/perfectmak",
"role": "Developer"
}
],
"require": {
"php": "^5.6|^7.0",
"monolog/monolog": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": "5.7.0",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"UnitTest\\": "tests/unit",
"IntegrationTest\\": "tests/integration"
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit"
]
},
"license": "LGPL-3.0"
}