-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.32 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.32 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
55
{
"name": "yellowskies/qr-code-bundle",
"type": "symfony-bundle",
"description": "Symfony Barcode & QR Code Generator Bundle with Twig extension",
"keywords": [
"symfony",
"bundle",
"twig",
"generator",
"qrcode",
"qr code",
"barcode",
"symfony6",
"symfony7",
"symfony8"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Antoine Tesson",
"email": "tesson.a@gmail.com",
"homepage": "https://yellow-skies.com"
}
],
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/options-resolver": "^6.4 || ^7.0 || ^8.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5.22 || ^13.1.6",
"symfony/phpunit-bridge": "^6.4 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
"Skies\\QRcodeBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Skies\\QRcodeBundle\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}