summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-12-21 09:57:57 +0100
committerRemi Collet <remi@remirepo.net>2017-12-21 09:57:57 +0100
commite8216295565399e46b0a315087aa71b42751fcfc (patch)
tree6f6eeb963f5c85746e85ac6e10ffd7d8d6e93773 /composer.json
parentfacb5cff970f4aaa8aabdfba9dc76ae6674f6edd (diff)
add patch for PHP 7.2 from https://github.com/tecnickcom/TCPDF/pull/74/files
disable opcache caching for fonts
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json40
1 files changed, 40 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..beab509
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,40 @@
+{
+ "name": "tecnickcom/tcpdf",
+ "version": "6.2.12",
+ "homepage": "http://www.tcpdf.org/",
+ "type": "library",
+ "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
+ "keywords": ["PDF","tcpdf","PDFD32000-2008","qrcode","datamatrix","pdf417","barcodes"],
+ "license": "LGPLv3",
+ "authors": [
+ {
+ "name": "Nicola Asuni",
+ "email": "info@tecnick.com",
+ "homepage": "http://nicolaasuni.tecnick.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "autoload": {
+ "classmap": [
+ "fonts",
+ "config",
+ "include",
+ "tcpdf.php",
+ "tcpdf_parser.php",
+ "tcpdf_import.php",
+ "tcpdf_barcodes_1d.php",
+ "tcpdf_barcodes_2d.php",
+ "include/tcpdf_colors.php",
+ "include/tcpdf_filters.php",
+ "include/tcpdf_font_data.php",
+ "include/tcpdf_fonts.php",
+ "include/tcpdf_images.php",
+ "include/tcpdf_static.php",
+ "include/barcodes/datamatrix.php",
+ "include/barcodes/pdf417.php",
+ "include/barcodes/qrcode.php"
+ ]
+ }
+}