From e021b4af83e06c2306f3724487b719b5a3cf5a6f Mon Sep 17 00:00:00 2001 From: e2800 Date: Fri, 10 Apr 2020 21:52:55 +0200 Subject: [PATCH] Add composer.json --- 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..5db97f6 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "eleirbag89/Mastodonbotphp", + "description": "A very simple PHP Mastodon API for sending statuses", + "type": "library", + "authors": [ + { + "name": "Gabriele Grillo", + "email": "gabry.grillo@alice.it" + } + ], + "license": "MIT", + "minimum-stability": "alpha", + "require": { + "php": ">=5.0" + }, + "autoload": { + "files": ["Mastodon.php"] + } +}