-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.08 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
{
"name": "paytic/payments-mobilpay",
"type": "library",
"license": "MIT",
"description": "Payments module for bytic library for mobilpay",
"keywords": [],
"homepage": "https://github.com/paytic/payments-mobilpay",
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Paytic\\Payments\\Mobilpay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paytic\\Payments\\Mobilpay\\Tests\\": "tests/src",
"Paytic\\Payments\\Mobilpay\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^7.2|^8.0",
"paytic/omnipay-mobilpay": "^2.0|^3.0"
},
"require-dev": {
"ext-zlib": "*",
"paytic/payments": "^1.0",
"paytic/payments-tests": "^1.0",
"bytic/form": "^1.0",
"bytic/common": "^0.9|^1.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0",
"vlucas/phpdotenv": "^4.0",
"omnipay/tests": "^3|^4"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}