summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-11-29 14:52:38 +0100
committerRemi Collet <remi@php.net>2023-11-29 14:52:38 +0100
commitfdc9550d92560084a63523a970bdb02f9476bc13 (patch)
tree9a4c2721b73039f0e129c6e750f0947694d08bab /composer.json
update to 2.0.13
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json46
1 files changed, 46 insertions, 0 deletions
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" }
+ }
+}