-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.21 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
{
"name": "dansmaculotte/omnipay-monetico",
"version": "1.1.2 ",
"description": "Monetico driver for the Omnipay PHP payment processing library",
"type": "library",
"keywords": [
"omnipay",
"gateway",
"monetico"
],
"homepage": "https://github.com/dansmaculotte/omnipay-monetico",
"license": "MIT",
"authors": [
{
"name": "Gaël Reyrol",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Omnipay\\Monetico\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\Monetico\\Tests\\": "tests/"
}
},
"require": {
"php": "7.2||^8.0",
"dansmaculotte/monetico-php": "^2.0",
"omnipay/common": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.7",
"omnipay/tests": "^4.1"
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"coverage": "@php vendor/bin/phpunit --coverage-html build",
"format": "@php vendor/bin/php-cs-fixer fix --config .php_cs.php"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}