-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
37 lines (37 loc) · 1.09 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
{
"name": "mopa/barcode-bundle",
"type": "symfony-bundle",
"description": "Integrates Zend_Barcode and PHP QR Lib to be easily used in symfony2 via twig",
"keywords": ["barcode", "qr code", "zend", "twig"],
"version": "master",
"authors": [
{
"name": "Philipp A. Mohrenweiser",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/phiamo/MopaBootstrapBundle/contributors"
}
],
"autoload": {
"psr-0": {
"Mopa\\Bundle\\BarcodeBundle": ""
}
},
"target-dir": "Mopa/Bundle/BarcodeBundle",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.3",
"symfony/twig-bundle": "~2.3|~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.6"
},
"suggest": {
"avalanche123/imagine-bundle": "dev-master",
"zendframework/zend-barcode": "~2.3.7",
"zendframework/zend-validator": "~2.3.7",
"zendframework/zend-servicemanager": "~2.3.7"
}
}