From f55334d19ee35f6a163f574a54546449f7d44ca0 Mon Sep 17 00:00:00 2001 From: Dan Untenzu Date: Thu, 3 Dec 2020 15:26:59 +0100 Subject: [PATCH] [FEATURE] Add composer Add composer to allow project installation via packagist. Refs #91 --- .gitignore | 1 + composer.json | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index 9241e2f..f2a258c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ lib/tos.local.txt media/custom/ var-* *._* +composer.phar /vendor .idea/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..09d2546 --- /dev/null +++ b/composer.json @@ -0,0 +1,6 @@ +{ + "name": "mojo42/jirafeau", + "description": "Jirafeau: a simple way to upload a file", + "type": "project", + "license": "AGPL-3.0" +} -- 2.34.1