From 682e48282ba86a3759e31145dec3d09df3173273 Mon Sep 17 00:00:00 2001 From: Lasse Rafn Date: Fri, 30 Jun 2017 14:22:47 +0200 Subject: [PATCH] Create composer.json For issue #15 --- composer.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2ff8d3e --- /dev/null +++ b/composer.json @@ -0,0 +1,23 @@ +{ + "name": "christian-vigh-phpclasses/PdfToText", + "description": "Read text from PDF files", + "keywords": [ + "pdf" + ], + "type": "library", + "license": "LGPL-3.0", + "authors": [ + { + "name": "Christian Vigh", + "email": "......" + } + ], + "require": { + "php": "^5.6|^7.0|^7.1" + }, + "autoload": { + "files": [ + "PdfToText.phpclass" + ] + } +}