-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.37 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
42
43
44
45
46
47
48
49
{
"name": "cimpleo/omnipay-authorizenetrecurring",
"type": "library",
"license": "MIT",
"description": "Authorize.Net processing library for the Omnipay 3.x which work just with Recurring Billing. Recurring Billing methods enable you to manage regular payment subscriptions in Authorize.Net Payment Gateway.",
"keywords": [
"authorize.net",
"gateway",
"recurring",
"billing",
"merchant",
"subscriptions",
"omnipay",
"payment"
],
"homepage": "https://github.com/cimpleo/omnipay-authorizenetrecurring",
"authors": [
{
"name": "Cimpleo",
"homepage": "https://cimpleo.com/",
"email": "[email protected]"
},
{
"name": "Denis Sidorov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Vlad Lesovskiy",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Omnipay\\AuthorizeNetRecurring\\": "src/"
}
},
"require": {
"php": "^7.0",
"omnipay/common": "^3",
"academe/authorizenet-objects": "^0.7",
"symfony/property-access": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^6",
"omnipay/tests": "^3"
}
}