diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ea2440d --- /dev/null +++ b/composer.json @@ -0,0 +1,44 @@ +{ + "name": "tecnickcom/tc-lib-pdf-image", + "description": "PHP library containing PDF Image methods", + "type": "library", + "homepage": "http://www.tecnick.com", + "license": "LGPL-3.0-or-later", + "keywords": [ + "tc-lib-pdf-image", + "PDF", + "image", + "PNG", + "JPEG", + "JPG" + ], + "authors": [ + { + "name": "Nicola Asuni", + "email": "info@tecnick.com", + "role": "lead" + } + ], + "require": { + "php": ">=8.0", + "ext-gd": "*", + "ext-zlib": "*", + "tecnickcom/tc-lib-file": "^2.0", + "tecnickcom/tc-lib-color": "^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\\Image\\": "src" + } + }, + "autoload-dev": { + "psr-4": { "Test\\": "test" } + } +} |