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