From 35f6a50f435cd1d2cb98f45f0f961e6da9fd2a8b Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Fri, 12 Aug 2016 22:55:46 +0200 Subject: [PATCH] Add composer.json. --- composer.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1df7122 --- /dev/null +++ b/composer.json @@ -0,0 +1,22 @@ +{ + "name": "tylerhall/php-growl", + "type": "library", + "description": "PHP-Growl is an implementation of the Growl notification system written in PHP.", + "keywords": ["push", "notifications", "growl"], + "homepage": "https://tyler.io/php-growl/", + "license": "MIT", + "authors": [ + { + "name": "Tyler Hall", + "email": "rth@tyler.io", + "homepage": "https://tyler.io/", + "role": "Developer" + } + ], + "require": { + "php": ">=5.0.0" + }, + "autoload": { + "classmap": ["class.growl.php"] + } +}