forked from endroid/qr-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·51 lines (51 loc) · 1.33 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
50
51
{
"name": "endroid/qr-code",
"description": "Endroid QR Code",
"keywords": ["endroid", "qrcode", "qr", "code", "bundle", "php"],
"homepage": "https://github.com/endroid/qr-code",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "[email protected]",
"homepage": "https://endroid.nl/"
}
],
"require": {
"php": ">=7.1",
"ext-gd": "*",
"symfony/options-resolver": "^2.7|^3.0|^4.0",
"bacon/bacon-qr-code": "^1.0.3",
"khanamiryan/qrcode-detector-decoder": "^1.0",
"symfony/property-access": "^2.7|^3.0|^4.0",
"myclabs/php-enum": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
"twig/twig": "^1.34.2|^2.4.4",
"symfony/phpunit-bridge": "^3.0|^4.0",
"symfony/routing": "^3.0|^4.0"
},
"suggest": {
"twig/twig": "To enable the twig extension"
},
"conflict": {
"twig/twig": "<1.34.2||>=2.0.0,<2.4.4"
},
"autoload": {
"psr-4": {
"Endroid\\QrCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\QrCode\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}