From ea81f578b3aabf85fac9e8ee92336a0054ce3395 Mon Sep 17 00:00:00 2001 From: Progi1984 Date: Fri, 13 Dec 2013 11:36:36 +0100 Subject: [PATCH] Support de Composer --- composer.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..9eac10f4 --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "phpoffice/phpword", + "description": "PHPWord - Read, Create and Write Word documents in PHP", + "keywords": ["PHP","Word", "Writer", "docx","doc","rtf"], + "homepage": "http://phpoffice.github.io", + "type": "library", + "license": "LGPL", + "authors": [ + { + "name": "Mark Baker" + }, + { + "name": "Franck Lefevre", + "homepage": "http://blog.rootslabs.net" + } + ], + "require": { + "php": ">=5.2.0", + "ext-xml": "*" + }, + "recommend": { + "ext-zip": "*", + "ext-gd2": "*" + }, + "autoload": { + "psr-0": { + "PHPWord": "src/" + } + } +}