-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 958 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": "paytic/payments-librapay",
"type": "library",
"license": "MIT",
"description": "Payments module for bytic library for librapay",
"keywords": [],
"homepage": "https://github.com/paytic/payments-librapay",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"autoload": {
"psr-4": {
"Paytic\\Payments\\Librapay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paytic\\Payments\\Librapay\\Tests\\": "tests/src",
"Paytic\\Payments\\Librapay\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^7.2|^8.0",
"paytic/omnipay-librapay": "^2.0|^3.0"
},
"require-dev": {
"ext-zlib": "*",
"bytic/payments": "^1.0",
"bytic/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"
}
}