forked from silverstripe/silverstripe-omnipay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.1 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
{
"name": "silverstripe/silverstripe-omnipay",
"description": "SilverStripe Omnipay Payment Module",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": ["silverstripe","payment","omnipay"],
"require": {
"silverstripe/framework": "^4",
"silverstripe/config": "^1",
"omnipay/common": "^2.4"
},
"require-dev": {
"silverstripe/versioned" : "^1.0",
"phpunit/phpunit": "^5.7",
"guzzle/guzzle": "^3.9",
"omnipay/paypal": "^2.5",
"omnipay/dummy": "^2.1",
"omnipay/paymentexpress": "^2.1"
},
"autoload": {
"psr-4": {
"SilverStripe\\Omnipay\\": "src/",
"SilverStripe\\Omnipay\\Tests\\": "tests/"
}
},
"extra" : {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"lint": "phpcs -s src/ tests/"
},
"suggest": {
"bummzack/silverstripe-omnipay-ui": "Adds UI Components to manage payments in the SilverStripe CMS."
},
"minimum-stability": "dev",
"prefer-stable": true
}