forked from academe/authorizenet-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 994 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
42
43
44
{
"name": "academe/authorizenet-objects",
"type": "library",
"description": "Authorize.Net API Message Value Objects",
"keywords": [
"authorize net",
"authorize",
"authorize.net",
"gateway",
"merchant",
"omnipay",
"pay",
"payment"
],
"homepage": "https://github.com/academe/authorizenet-objects",
"license": "MIT",
"authors": [
{
"name": "Jason Judge",
"homepage": "https://github.com/judgej"
}
],
"autoload": {
"psr-4": {
"Academe\\AuthorizeNet\\": "src/"
}
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.4 || ^7.0",
"squizlabs/php_codesniffer": "^3",
"moneyphp/money": "^3.0"
},
"suggest": {
"moneyphp/money": "^3.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}