-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 977 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
{
"name": "wearemarketing/paylands-php",
"description": "Paynopain Paylands service",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "WAM Develop Team",
"email": "develop@wearemarketing.com"
}
],
"require": {
"php": "^5.5|>=7.0.8",
"php-http/client-common": "^1.6",
"php-http/discovery": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "<6.0",
"php-http/mock-client": "^1.0",
"guzzlehttp/psr7": "^1.0",
"php-http/guzzle6-adapter": "^1.1"
},
"suggest": {
"guzzlehttp/guzzle": "Implements a required PSR-7 Http client"
},
"autoload": {
"psr-4": {
"WAM\\Paylands\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WAM\\Paylands\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}