[PECL-CVS] [pecl-xml-xmldiff] master: Add composer.json

[email protected] (ndossche) Sun, 5 Apr 2026 12:04:42 +0000
Newsgroups php.pecl.cvs
Message-ID <[email protected]>
Author: ndossche (ndossche)
Date: 2026-04-05T14:04:32+02:00

Commit: https://github.com/php/pecl-xml-xmldiff/commit/11784e1507b271e6fac779238b58c1c3e5ea219b
Raw diff: https://github.com/php/pecl-xml-xmldiff/commit/11784e1507b271e6fac779238b58c1c3e5ea219b.diff

Add composer.json

Changed paths:
  A  composer.json


Diff:

diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d8294eb
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,12 @@
+{
+    "name": "pecl/xml-xmldiff",
+    "type": "php-ext",
+    "license": "BSD-2-Clause",
+    "description": "The extension is able to produce diffs of two XML documents and then to apply the difference to the source document. The diff is a XML document containing copy/insert/delete instruction nodes in human readable format. DOMDocument objects, local files and strings in memory can be processed.",
+    "require": {
+        "php": ">= 7.0.0"
+    },
+    "php-ext": {
+        "extension-name": "xmldiff"
+    }
+}