-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1014 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
40
41
42
43
{
"name": "descom/omnipay-redsys",
"description": "Redsys driver for Omnipay",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Omnipay\\Redsys\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\Redsys\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Cesar",
"email": "cesar@descom.es"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.4",
"league/omnipay": "^3.2",
"omnipay/common": "^3.2",
"descom/redsys": "^1.7.6"
},
"require-dev": {
"guzzlehttp/psr7": "^1|^2",
"omnipay/tests": "^4.1",
"phpunit/phpunit": "^9.5|^10.0|^10.5",
"friendsofphp/php-cs-fixer": "^3.10",
"phpstan/phpstan": "^1.8"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}