From fdc9550d92560084a63523a970bdb02f9476bc13 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 29 Nov 2023 14:52:38 +0100 Subject: update to 2.0.13 --- composer.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..96d17df --- /dev/null +++ b/composer.json @@ -0,0 +1,46 @@ +{ + "name": "tecnickcom/tc-lib-pdf-font", + "description": "PHP library containing PDF page formats and definitions", + "type": "library", + "homepage": "http://www.tecnick.com", + "license": "LGPL-3.0-or-later", + "keywords": [ + "tc-lib-pdf-font", + "PDF", + "font", + "TTF", + "AFM", + "PFB", + "import" + ], + "authors": [ + { + "name": "Nicola Asuni", + "email": "info@tecnick.com", + "role": "lead" + } + ], + "require": { + "php": ">=5.4.0", + "ext-json": "*", + "ext-pcre": "*", + "ext-zlib": "*", + "tecnickcom/tc-lib-file": "^2.0", + "tecnickcom/tc-lib-unicode-data": "^2.0", + "tecnickcom/tc-lib-pdf-encrypt": "^2.0" + }, + "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\\Font\\": "src" + } + }, + "autoload-dev": { + "psr-4": { "Test\\": "test" } + } +} -- cgit