-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
48 lines (47 loc) · 1.08 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
{
"name": "masterix21/green-pass",
"description": "EU Green Pass",
"keywords": [
"masterix21",
"green-pass"
],
"homepage": "https://github.com/masterix21/green-pass",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Luca Longo",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"ext-zlib": "*",
"mhauri/base45": "^0.1.1",
"nesbot/carbon": "^2.50",
"spomky-labs/cbor-php": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"spatie/ray": "^1.28",
"vimeo/psalm": "^4.8"
},
"autoload": {
"psr-4": {
"Masterix21\\GreenPass\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Masterix21\\GreenPass\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}