From 5caa626d0d1458a68397ee5cdaacc5c87fba200c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 14 Apr 2017 06:44:52 +0200 Subject: v1.6.2 --- composer.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..cd88df3 --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "theseer/fdomdocument", + "description": "The classes contained within this repository extend the standard DOM to use exceptions at all occasions of errors instead of PHP warnings or notices. They also add various custom methods and shortcuts for convenience and to simplify the usage of DOM.", + "homepage": "https://github.com/theseer/fDOMDocument", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/theseer/fDOMDocument/issues" + }, + "require": { + "php": ">=5.3.3", + "ext-dom": "*", + "lib-libxml": "*" + }, + "autoload": { + "classmap": [ + "src/" + ] + } +} -- cgit