-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 951 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": "ubitransports/omnipay-payzen",
"type": "library",
"description": "PayZen driver for the Omnipay payment processing library",
"keywords": [
"gateway",
"merchant",
"omnipay",
"pay",
"payment",
"payzen"
],
"homepage": "https://github.com/ubitransports/omnipay-payzen",
"license": "MIT",
"authors": [
{
"name": "Ubi Transports",
"homepage": "https://github.com/ubitransports"
}
],
"autoload": {
"psr-4": { "Omnipay\\PayZen\\" : "src/" }
},
"require": {
"php": "^8",
"omnipay/common": "^3.0",
"symfony/http-client": "^6.3"
},
"require-dev": {
"omnipay/tests": "^4.0",
"phpunit/phpunit": "^8.5",
"http-interop/http-factory-guzzle": "^1.2"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}