summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 0c62d81eadd70c7ae8054c8f2c7a5e5323fd5455 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
  "name": "tecnickcom/tc-lib-barcode",
  "description": "PHP library to generate linear and bidimensional barcodes",
  "type": "library",
  "homepage": "http://www.tecnick.com",
  "license": "LGPL-3.0",
  "keywords": [
    "tc-lib-barcode",
    "barcode",
    "CODE 39",
    "ANSI MH10.8M-1983",
    "USD-3",
    "3 of 9",
    "CODE 93",
    "USS-93",
    "Standard 2 of 5",
    "Interleaved 2 of 5",
    "CODE 128 A B C",
    "UPC",
    "EAN 8",
    "EAN 13",
    "UPC-A",
    "UPC-E",
    "MSI",
    "POSTNET",
    "PLANET",
    "RMS4CC",
    "Royal Mail",
    "CBC",
    "KIX",
    "Klant",
    "Intelligent Mail Barcode",
    "Onecode",
    "USPS-B-3200",
    "CODABAR",
    "CODE 11",
    "PHARMACODE",
    "PHARMACODE TWO-TRACKS",
    "Datamatrix",
    "ECC200",
    "QR-Code",
    "PDF417"
  ],
  "authors": [
    {
      "name": "Nicola Asuni",
      "email": "info@tecnick.com",
      "role": "lead"
    }
  ],
  "require": {
    "php": ">=5.3",
    "ext-bcmath": "*",
    "ext-date": "*",
    "ext-gd": "*",
    "ext-pcre": "*",
    "tecnickcom/tc-lib-color": "^1.12.15"
  },
  "require-dev": {
    "apigen/apigen": "^2.8.1 || ^4.1.2",
    "bartlett/php-compatinfo": "^4.5.2 || ^5.0.10 || ^5.0.12",
    "pdepend/pdepend": "^2.5.2",
    "phploc/phploc": "^2.1 || ^3.0 || ^4.0",
    "phpmd/phpmd": "^2.6.0",
    "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.1",
    "sebastian/phpcpd": "^2.0 || ^3.0 || ^4.0",
    "squizlabs/php_codesniffer": "^2.8.0 || ^3.2.0"
  },
  "autoload": {
    "psr-4": {
      "Com\\Tecnick\\Barcode\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Test\\": "test"
    }
  }
}