From f7cb4dbd570dcfdb4ace9435c1e80c5eb9234188 Mon Sep 17 00:00:00 2001 From: David Grudl Date: Fri, 31 Aug 2012 03:17:34 +0200 Subject: [PATCH] added composer.json --- composer.json | 16 ++++++++++++++++ examples/load.php | 2 +- examples/search.php | 2 +- examples/send.php | 2 +- OAuth.php => library/OAuth.php | 0 twitter.class.php => library/twitter.class.php | 0 6 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 composer.json rename OAuth.php => library/OAuth.php (100%) rename twitter.class.php => library/twitter.class.php (100%) diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..19ee0c5 --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "dg/twitter-php", + "description": "Small and easy Twitter wrapper for PHP.", + "keywords": ["twitter", "oauth"], + "homepage": "https://github.com/dg/twitter-php", + "license": ["BSD-3"], + "authors": [ + { + "name": "David Grudl", + "homepage": "http://davidgrudl.com" + } + ], + "autoload": { + "classmap": ["library/"] + } +} \ No newline at end of file diff --git a/examples/load.php b/examples/load.php index dad31d6..730d984 100644 --- a/examples/load.php +++ b/examples/load.php @@ -1,6 +1,6 @@