-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.02 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": "paytic/omnipay-payu",
"type": "library",
"license": "MIT",
"description": "PayU driver for ThePhpLeague Omnipay multi-payment processing library",
"keywords": [
"twispay",
"driver",
"gateway",
"merchant",
"omnipay",
"pay",
"payment"
],
"homepage": "https://github.com/paytic/omnipay-payu",
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Paytic\\Omnipay\\Payu\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paytic\\Omnipay\\Payu\\Tests\\": "tests/",
"Paytic\\Omnipay\\Payu\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^7.0|^8.0",
"paytic/omnipay-common": "^3.0",
"symfony/http-client": "^6.0|^6.3"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"vlucas/phpdotenv": "^2.5",
"omnipay/tests": "^3.0|^4.0",
"nyholm/psr7": "^1.1"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}