-
Notifications
You must be signed in to change notification settings - Fork 67
/
composer.json
49 lines (49 loc) · 1.39 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": "silverstripe/silverstripe-omnipay",
"description": "SilverStripe Omnipay Payment Module",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": ["silverstripe","payment","omnipay"],
"require": {
"php": "^8.1",
"silverstripe/framework": "^5",
"omnipay/common": "^3"
},
"require-dev": {
"guzzlehttp/psr7": "^2.5",
"silverstripe/versioned" : "*",
"phpunit/phpunit": "^9.5",
"php-http/guzzle7-adapter": "^1",
"omnipay/paypal": "^3",
"omnipay/dummy": "^3",
"omnipay/paymentexpress": "^3.1.1",
"moneyphp/money": "^4.5",
"symfony/http-foundation": "^5.4.25 || ^6.3.1"
},
"autoload": {
"psr-4": {
"SilverStripe\\Omnipay\\": "src/",
"SilverStripe\\Omnipay\\Tests\\": "tests/"
}
},
"extra" : {
"branch-alias": {
"dev-main": "4.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,
"config": {
"allow-plugins": {
"composer/installers": true,
"php-http/discovery": true,
"silverstripe/vendor-plugin": true
}
}
}