-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 983 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
{
"name": "abwebdevelopers/pin-payments",
"description": "Facilitates communication between your PHP app and the Pin Payments API.",
"type": "library",
"homepage": "https://github.com/ABWebDevelopers/pin-payments",
"keywords": [
"payment",
"payments",
"pin",
"gateway"
],
"require": {
"php": "^7.1",
"php-http/client-implementation": "^1.0",
"icanboogie/inflector": "^1.4",
"respect/validation": "^1.1"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^7.0",
"php-http/curl-client": "^1.7",
"guzzlehttp/psr7": "^1.4"
},
"license": "MIT",
"authors": [
{
"name": "Ben Thomson",
"email": "ben@abweb.com.au"
}
],
"autoload": {
"psr-4": {
"ABWebDevelopers\\PinPayments\\": "src/",
"ABWebDevelopers\\PinPayments\\Tests\\": "tests/"
}
}
}