-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·40 lines (40 loc) · 1.03 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
{
"name": "oneb-pub/qr-uct",
"description": "Ukraine credit transfer url and qr generator",
"license": "MIT",
"type": "project",
"keywords": [
"uct"
],
"authors": [
{
"name": "Yaroslav Plakyda",
"email": "[email protected]",
"homepage": "https://oneb.app"
}
],
"require": {
"php": ">=7.2",
"globalcitizen/php-iban": "^4.2",
"splitbrain/php-qrcode": "^0.1.0",
"webmozart/assert": "^1.11"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ramsey/composer-repl": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"captainhook/plugin-composer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"UCT\\": "src/"
}
}
}