summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json26
1 files changed, 26 insertions, 0 deletions
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/"
+ ]
+ }
+}