-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
40 lines (40 loc) · 1.04 KB
/
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
{
"name": "academe/opayo-pi",
"license": "MIT",
"type": "library",
"description": "A library to handle the message content and structure for the Opayo Pi (was Sage Pay Integration) payment gateway",
"keywords": [
"gateway",
"merchant",
"payment",
"sagepay"
],
"homepage": "https://github.com/academe/SagePay-Integration",
"authors": [
{
"name": "Jason Judge",
"email": "jason.judge@academe.co.uk",
"homepage": "http://academe.co.uk/",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"shrikeh/teapot": "^1.0|^2.0",
"psr/http-message": "^1.0",
"alcohol/iso4217": "^3.0|^4.0"
},
"suggest": {
"moneyphp/money": "^3.0",
"guzzlehttp/psr7": "^1.2.0",
"guzzlehttp/guzzle": "^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.0"
},
"autoload": {
"psr-4": {
"Academe\\Opayo\\Pi\\": "src/"
}
}
}