-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 929 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
{
"name": "digitsrl/php-wom-connector",
"type": "library",
"description": "A PHP connector library for the WOM Platform, that allows clients to develop custom Instruments (WOM sources) and Merchants (WOM consumers).",
"minimum-stability": "stable",
"keywords": [ "WOM", "Credits", "Vouchers", "DIGIT", "Instrument", "Merchant"],
"homepage": "https://wom.social",
"license": "MIT",
"authors": [
{
"name": "Saverio Delpriori",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Lorenz Cuno Klopfenstein",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"WOM\\": "src/"
}
},
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-openssl": "*",
"monolog/monolog": "^1.16",
"guzzlehttp/guzzle": "^6.5",
"ramsey/uuid": "^3.9",
"phpseclib/phpseclib": "^2.0"
}
}