|
1 | 1 | { |
2 | | - "name": "tecnickcom/tc-lib-pdf-font", |
3 | | - "description": "PHP library containing PDF page formats and definitions", |
4 | | - "type": "library", |
5 | | - "homepage": "https://tcpdf.org", |
6 | | - "license": "LGPL-3.0-or-later", |
7 | | - "keywords": [ |
8 | | - "tc-lib-pdf-font", |
9 | | - "PDF", |
10 | | - "font", |
11 | | - "TTF", |
12 | | - "AFM", |
13 | | - "PFB", |
14 | | - "import" |
15 | | - ], |
16 | | - "authors": [ |
17 | | - { |
18 | | - "name": "Nicola Asuni", |
19 | | - "email": "info@tecnick.com", |
20 | | - "role": "lead" |
| 2 | + "name": "tecnickcom/tc-lib-pdf-font", |
| 3 | + "description": "PHP library containing PDF page formats and definitions", |
| 4 | + "type": "library", |
| 5 | + "homepage": "https://tcpdf.org", |
| 6 | + "license": "LGPL-3.0-or-later", |
| 7 | + "keywords": [ |
| 8 | + "tc-lib-pdf-font", |
| 9 | + "PDF", |
| 10 | + "font", |
| 11 | + "TTF", |
| 12 | + "AFM", |
| 13 | + "PFB", |
| 14 | + "import" |
| 15 | + ], |
| 16 | + "authors": [ |
| 17 | + { |
| 18 | + "name": "Nicola Asuni", |
| 19 | + "email": "info@tecnick.com", |
| 20 | + "role": "lead" |
| 21 | + } |
| 22 | + ], |
| 23 | + "funding": [ |
| 24 | + { |
| 25 | + "type": "github", |
| 26 | + "url": "https://github.com/sponsors/tecnickcom" |
| 27 | + } |
| 28 | + ], |
| 29 | + "require": { |
| 30 | + "php": ">=8.2", |
| 31 | + "ext-json": "*", |
| 32 | + "ext-pcre": "*", |
| 33 | + "ext-zlib": "*", |
| 34 | + "tecnickcom/tc-lib-file": "^2.6", |
| 35 | + "tecnickcom/tc-lib-unicode-data": "^2.1", |
| 36 | + "tecnickcom/tc-lib-pdf-encrypt": "^2.3" |
| 37 | + }, |
| 38 | + "minimum-stability": "dev", |
| 39 | + "prefer-stable": true, |
| 40 | + "config": { |
| 41 | + "allow-plugins": { |
| 42 | + "dealerdirect/phpcodesniffer-composer-installer": true |
| 43 | + } |
| 44 | + }, |
| 45 | + "require-dev": { |
| 46 | + "pdepend/pdepend": "^2.16", |
| 47 | + "phpunit/phpunit": "^13.1 || ^12.5 || ^11.5", |
| 48 | + "phpcompatibility/php-compatibility": "^10.0.0@dev" |
| 49 | + }, |
| 50 | + "autoload": { |
| 51 | + "psr-4": { |
| 52 | + "Com\\Tecnick\\Pdf\\Font\\": "src" |
| 53 | + } |
| 54 | + }, |
| 55 | + "autoload-dev": { |
| 56 | + "psr-4": { |
| 57 | + "Test\\": "test" |
| 58 | + } |
| 59 | + }, |
| 60 | + "support": { |
| 61 | + "issues": "https://github.com/tecnickcom/tc-lib-pdf-font/issues", |
| 62 | + "source": "https://github.com/tecnickcom/tc-lib-pdf-font" |
| 63 | + }, |
| 64 | + "scripts": { |
| 65 | + "test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --stderr test", |
| 66 | + "cs-check": "./vendor/bin/mago --config ./mago.src.toml lint src && ./vendor/bin/mago --config ./mago.test.toml lint test", |
| 67 | + "cs-fix": "./vendor/bin/mago fmt src test", |
| 68 | + "analyse": "./vendor/bin/mago --config ./mago.src.toml analyze src && ./vendor/bin/mago --config ./mago.test.toml analyze test" |
21 | 69 | } |
22 | | - ], |
23 | | - "funding": [ |
24 | | - { |
25 | | - "type": "github", |
26 | | - "url": "https://github.com/sponsors/tecnickcom" |
27 | | - } |
28 | | - ], |
29 | | - "require": { |
30 | | - "php": ">=8.1", |
31 | | - "ext-json": "*", |
32 | | - "ext-pcre": "*", |
33 | | - "ext-zlib": "*", |
34 | | - "tecnickcom/tc-lib-file": "^2.5", |
35 | | - "tecnickcom/tc-lib-unicode-data": "^2.0", |
36 | | - "tecnickcom/tc-lib-pdf-encrypt": "^2.2" |
37 | | - }, |
38 | | - "minimum-stability": "dev", |
39 | | - "prefer-stable": true, |
40 | | - "config": { |
41 | | - "allow-plugins": { |
42 | | - "dealerdirect/phpcodesniffer-composer-installer": true |
43 | | - } |
44 | | - }, |
45 | | - "require-dev": { |
46 | | - "pdepend/pdepend": "^2.16", |
47 | | - "phpmd/phpmd": "^2.15", |
48 | | - "phpunit/phpunit": "^13.1 || ^12.5 || ^11.5 || ^10.5", |
49 | | - "squizlabs/php_codesniffer": "^4.0", |
50 | | - "phpcompatibility/php-compatibility": "^10.0.0@dev" |
51 | | - }, |
52 | | - "autoload": { |
53 | | - "psr-4": { |
54 | | - "Com\\Tecnick\\Pdf\\Font\\": "src" |
55 | | - } |
56 | | - }, |
57 | | - "autoload-dev": { |
58 | | - "psr-4": { "Test\\": "test" } |
59 | | - }, |
60 | | - "support": { |
61 | | - "issues": "https://github.com/tecnickcom/tc-lib-pdf-font/issues", |
62 | | - "source": "https://github.com/tecnickcom/tc-lib-pdf-font" |
63 | | - }, |
64 | | - "scripts": { |
65 | | - "test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --stderr test", |
66 | | - "cs-check": "./vendor/bin/phpcs --standard=phpcs.xml", |
67 | | - "cs-fix": "./vendor/bin/phpcbf --ignore=\"./vendor/\" --standard=psr12 src test", |
68 | | - "analyse": "./vendor/phpstan.phar analyse" |
69 | | - } |
70 | 70 | } |
0 commit comments