-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.21 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
{
"name": "jmleroux/covid-attestation",
"description": "COVID19 french attestation generator",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "jmleroux",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"symfony/config": "^5.1",
"symfony/http-kernel": "^5.1",
"symfony/http-foundation": "^5.1",
"symfony/routing": "^5.1",
"symfony/dependency-injection": "^5.1",
"symfony/framework-bundle": "^5.1",
"symfony/yaml": "^5.1",
"symfony/twig-bundle": "^5.1",
"doctrine/annotations": "^1.11",
"symfony/form": "^5.1",
"symfony/validator": "^5.1",
"chillerlan/php-qrcode": "^4.2",
"tecnickcom/tcpdf": "^6.3",
"symfony/translation": "^5.1"
},
"require-dev": {
"symfony/web-profiler-bundle": "^5.1",
"symfony/phpunit-bridge": "^5.1",
"symfony/browser-kit": "^5.1"
},
"autoload": {
"psr-4": {
"Jmleroux\\CovidAttestation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jmleroux\\CovidAttestation\\Tests\\": "tests/"
}
}
}