-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.24 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.24 KB
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
{
"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": "info@endroid.nl"
}
],
"require": {
"php": "^8.4",
"endroid/qr-code": "^6.1.0",
"symfony/framework-bundle": "^6.4||^7.4||^8.0",
"symfony/twig-bundle": "^6.4||^7.4||^8.0"
},
"require-dev": {
"endroid/quality": "dev-main"
},
"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-main": "7.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"carthage-software/mago": true
}
}
}