summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 45fe6977c385748050b5e95b8dc91fa6adec8329 (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
{
  "name": "tecnickcom/tc-lib-pdf-filter",
  "description": "PHP library to decode PDF compression and encryption filters",
  "type": "library",
  "homepage": "http://www.tecnick.com",
  "license": "LGPL-3.0-or-later",
  "keywords": [
    "tc-lib-pdf-filter",
    "PDF",
    "filter",
    "encryption",
    "compression"
  ],
  "authors": [
    {
      "name": "Nicola Asuni",
      "email": "info@tecnick.com",
      "role": "lead"
    }
  ],
  "require": {
    "php": ">=8.0",
    "ext-zlib": "*",
    "ext-pcre": "*"
  },
  "require-dev": {
    "pdepend/pdepend": "2.13.0",
    "phpmd/phpmd": "2.13.0",
    "phpunit/phpunit": "10.1.2 || 9.6.13",
    "squizlabs/php_codesniffer": "3.7.2"
  },
  "autoload": {
    "psr-4": {
      "Com\\Tecnick\\Pdf\\Filter\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": { "Test\\": "test" }
  }
}