forked from endroid/qr-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·59 lines (59 loc) · 1.58 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
52
53
54
55
56
57
58
59
{
"name": "endroid/qrcode",
"description": "Endroid QR Code",
"keywords": ["endroid", "qrcode", "qr", "code", "bundle", "symfony", "flex"],
"homepage": "https://github.com/endroid/QrCode",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "[email protected]",
"homepage": "http://endroid.nl/"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ThreeSixtyEu/BaconQrCode.git"
}
],
"require": {
"php": ">=5.6",
"ext-gd": "*",
"symfony/options-resolver": "^2.7|^3.0",
"bacon/bacon-qr-code": "^1.0.4",
"khanamiryan/qrcode-detector-decoder": "^1.0",
"symfony/property-access": "^2.7|^3.0",
"myclabs/php-enum": "^1.5"
},
"require-dev": {
"symfony/asset": "^2.7|^3.0",
"symfony/browser-kit": "^2.7|^3.0",
"symfony/finder": "^2.7|^3.0",
"symfony/framework-bundle": "^2.7|^3.0",
"symfony/http-kernel": "^2.7|^3.0",
"symfony/templating": "^2.7|^3.0",
"symfony/twig-bundle": "^2.7|^3.0",
"symfony/yaml": "^2.7|^3.0",
"phpunit/phpunit": "^5.7|^6.0"
},
"autoload": {
"psr-4": {
"Endroid\\QrCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\QrCode\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}