From cd412f4eb41244d52b6f2875ca9bf523d1e20847 Mon Sep 17 00:00:00 2001 From: Magnar Eivind Martinsen Date: Fri, 2 Jan 2026 14:35:39 +0100 Subject: [PATCH 1/4] Added composer.json for testing with metsis_drupal --- composer.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4ba49d3 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "metno/mmd", + "type": "package", + "description": "METNO MMD", + "keywords": ["xslt", "xsd", "xml","rdf","skos"], + "homepage": "https://github.com/metno/mmd", + "license": "GNU General Public License v3.0", + "authors": [ + { + "name": "See GitHub contributors", + "homepage": "https://github.com/metno/mmd/graphs/contributors" + } + ], + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-simplexml": "*" + } +} From d7c79b26570f117a0e3c1bad337d6180fdee3ac1 Mon Sep 17 00:00:00 2001 From: Magnar Eivind Martinsen Date: Thu, 8 Jan 2026 15:55:01 +0100 Subject: [PATCH 2/4] Added easyrdf dependency for reading and quering the rdf and turtle files --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 4ba49d3..cadf6ee 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,8 @@ ], "require": { "ext-dom": "*", - "ext-json": "*", - "ext-simplexml": "*" + "ext-json": "*", + "ext-simplexml": "*" + "sweetrdf/easyrdf": "*" } } From b1ae04ba9dee6e1e91c9a48594d4a5be0c4e1df3 Mon Sep 17 00:00:00 2001 From: Magnar Eivind Martinsen Date: Thu, 8 Jan 2026 15:56:28 +0100 Subject: [PATCH 3/4] Fixed syntax error in file --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cadf6ee..d3a3a56 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "require": { "ext-dom": "*", "ext-json": "*", - "ext-simplexml": "*" + "ext-simplexml": "*", "sweetrdf/easyrdf": "*" } } From bc7f3f1896347d2611af54f8e463740e533a3b23 Mon Sep 17 00:00:00 2001 From: Magnar Eivind Martinsen Date: Mon, 12 Jan 2026 16:34:18 +0100 Subject: [PATCH 4/4] Fixed discrption to be consistent with the MMD Documentation --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d3a3a56..afc5c51 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "metno/mmd", "type": "package", - "description": "METNO MMD", + "description": "MET Norway Metadata Format (MMD)", "keywords": ["xslt", "xsd", "xml","rdf","skos"], "homepage": "https://github.com/metno/mmd", "license": "GNU General Public License v3.0",