-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
41 lines (41 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
41
{
"name": "academe/sagepay",
"license": "MIT",
"type": "library",
"description": "A library to handle the back-end processing for the SagePay Server (protocol v3) service",
"keywords": [
"gateway",
"merchant",
"payment",
"sagepay"
],
"homepage": "https://github.com/academe/SagePay",
"authors": [
{
"name": "Jason Judge",
"email": "jason.judge@academe.co.uk",
"homepage": "http://www.academe.co.uk/",
"role": "Developer"
},
{
"name": "Other Contributors",
"homepage": "https://github.com/academe/SagePay/graphs/contributors",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"respect/validation": "0.5.x"
},
"require-dev": {
"phpunit/phpunit": "4.0.*"
},
"autoload": {
"psr-0": {
"Academe\\SagePay": "src/"
},
"psr-4": {
"Academe\\SagePay\\": "src/Academe/SagePay/"
}
}
}