forked from shoptet/spayd-php
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 838 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 838 Bytes
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
{
"name": "sunfoxcz/spayd-php",
"description": "SPAYD messages for QR code payments generation.",
"keywords": ["spayd", "spayd-php", "qr-platba", "qrplatba"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tomáš Jacík",
"email": "tomas.jacik@sunfox.cz",
"homepage": "http://sunfox.cz"
}
],
"require": {
"php": "^7.4||^8.0",
"ext-bcmath": "*"
},
"require-dev": {
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"Sunfox\\Spayd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SunfoxTests\\Spayd\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --no-progress --ansi -c phpstan.neon -l max src",
"tests": "vendor/bin/tester -s -p php -C tests/Cases"
}
}