-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "minvws/puzi-auth-bundle",
"description": "Symfony authentication middleware for UZI passes.",
"type": "symfony-bundle",
"license": "EUPL-1.2",
"keywords": [
"symfony",
"security",
"crypto",
"cryptography",
"signature",
"x509",
"x.509",
"asn1",
"asn.1",
"UZI"
],
"autoload": {
"psr-4": { "MinVWS\\PUZI\\AuthBundle\\": "src" }
},
"autoload-dev": {
"psr-4": {
"MinVWS\\PUZI\\AuthBundle\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"require": {
"php": ">=7.3",
"symfony/framework-bundle": "^3.4.23|^4.3|^4.4|^5.0",
"minvws/puzi-php": "^0.5",
"symfony/security-core": "^3.4.23|^4.3|^4.4|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^1.4",
"phpstan/phpstan": "^0.12.80",
"phpstan/phpstan-symfony": "^0.12.22"
},
"authors": [
{
"name": "Anne Jan Brouwer",
"email": "brouwer@annejan.com"
},
{
"name": "Nick ten Cate",
"email": "nick@nicktencate.com"
},
{
"name": "Mendel Mobach",
"email": "mendel@mobach.nl"
},
{
"name": "Joshua Thijssen",
"email": "jthijssen@noxlogic.nl"
}
],
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/phpstan analyse",
"vendor/bin/phpcs"
]
}
}