forked from endroid/qr-code-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.25 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
{
"name": "endroid/qr-code-bundle",
"description": "Endroid QR Code Bundle",
"keywords": ["endroid", "qr", "code", "symfony", "bundle", "php"],
"homepage": "https://github.com/endroid/qr-code-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"endroid/installer": "^1.2.2",
"endroid/qr-code": "^4.8.1",
"symfony/framework-bundle": "^5.4||^6.0",
"symfony/twig-bundle": "^5.4||^6.0",
"symfony/yaml": "^5.4||^6.0"
},
"require-dev": {
"endroid/quality": "dev-master"
},
"suggest": {
"roave/security-advisories": "Avoids installation of package versions with vulnerabilities"
},
"autoload": {
"psr-4": {
"Endroid\\QrCodeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\QrCodeBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"endroid/installer": true
}
}
}