-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 943 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": "obud/fiosigner",
"description": "PHP implementation of the Fio Signer application, which allows to automatically sign authorization requests using your private key.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ondřej Budín",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-simplexml": "*",
"ext-openssl": "*",
"ext-dom": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpstan/extension-installer": "^1.1",
"spaze/phpstan-disallowed-calls": "^2.2",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Obud\\FioSigner\\": "src/"
}
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyse -c phpstan.neon --no-progress"
]
},
"minimum-stability": "stable"
}