-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1021 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
40
41
42
{
"name": "gamebay/rksv",
"description": "Austrian RKSV implementation with PrimeSign online certificate signing service",
"type": "library",
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7",
"chillerlan/php-qrcode": "^3.1.1",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Nino Korent",
"email": "[email protected]"
},
{
"name": "Sandro Lovnički",
"email": "[email protected]"
},
{
"name": "Toni Krešić",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Gamebay\\RKSV\\": "src/Gamebay/RKSV/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel":{
"providers": [
"Gamebay\\RKSV\\ServiceProvider"
]
}
}
}