summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: fd29425a03b6bfe3b4fc4111a824afb2ad611f21 (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
{
    "name": "tecnickcom/tc-lib-pdf-encrypt",
    "description": "PHP library to encrypt data for PDF",
    "type": "library",
    "homepage": "https://tcpdf.org",
    "license": "LGPL-3.0-or-later",
    "keywords": [
        "tc-lib-pdf-encrypt",
        "PDF",
        "encrypt",
        "encryption",
        "AES",
        "RC4"
    ],
    "authors": [
        {
            "name": "Nicola Asuni",
            "email": "info@tecnick.com",
            "role": "lead"
        }
    ],
    "funding": [
        {
            "type": "github",
            "url": "https://github.com/sponsors/tecnickcom"
        }
    ],
    "require": {
        "php": ">=8.2",
        "ext-date": "*",
        "ext-hash": "*",
        "ext-openssl": "*",
        "ext-pcre": "*"
    },
    "suggest": {
        "ext-posix": "*"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    },
    "require-dev": {
        "pdepend/pdepend": "^2.16",
        "phpunit/phpunit": "^13.1 || ^12.5 || ^11.5",
        "phpcompatibility/php-compatibility": "^10.0.0@dev"
    },
    "autoload": {
        "psr-4": {
            "Com\\Tecnick\\Pdf\\Encrypt\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Test\\": "test"
        }
    },
    "support": {
        "issues": "https://github.com/tecnickcom/tc-lib-pdf-encrypt/issues",
        "source": "https://github.com/tecnickcom/tc-lib-pdf-encrypt"
    },
    "scripts": {
        "test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --stderr test",
        "cs-check": "./vendor/bin/mago --config ./mago.src.toml lint src && ./vendor/bin/mago --config ./mago.test.toml lint test",
        "cs-fix": "./vendor/bin/mago fmt src test",
        "analyse": "./vendor/bin/mago --config ./mago.src.toml analyze src && ./vendor/bin/mago --config ./mago.test.toml analyze test"
    }
}