-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
39 lines (39 loc) · 865 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
{
"name": "ambroisemaupate/omnipay-sips2",
"description": "Omnipay gateway for Worldline Sips PayPage POST API (Atos Sips 2.0)",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/ambroisemaupate/omnipay-sips2",
"authors": [
{
"name": "Ambroise Maupate",
"email": "[email protected]"
}
],
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"atos",
"sips",
"sips2",
"worldline",
"sogenactif"
],
"autoload": {
"psr-4": {
"Omnipay\\SipsPayPage\\": "src/"
}
},
"require": {
"omnipay/common": "~2.0|~2.5"
},
"require-dev": {
"omnipay/tests": "~2.0|~2.5"
},
"scripts": {
"test": "phpunit"
}
}