From d7f22ac7d4ea4ea99a3ff6127072faa769d751b4 Mon Sep 17 00:00:00 2001 From: Mistralys Date: Mon, 8 Oct 2018 11:03:02 +0200 Subject: [PATCH 1/2] Create composer.json Added the composer.json to be able to install the library using the Composer package manager. --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..2a93d949 --- /dev/null +++ b/composer.json @@ -0,0 +1,6 @@ +{ + "name": "medialize/uri.js", + "description": "URLs in JavaScript", + "type": "library", + "license": "MIT", +} From 6bdd27aba85a36f56eec224daba37c4641c860fc Mon Sep 17 00:00:00 2001 From: Mistralys Date: Mon, 8 Oct 2018 11:08:13 +0200 Subject: [PATCH 2/2] Fixed trailing comma --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 2a93d949..71a29072 100644 --- a/composer.json +++ b/composer.json @@ -2,5 +2,5 @@ "name": "medialize/uri.js", "description": "URLs in JavaScript", "type": "library", - "license": "MIT", + "license": "MIT" }