diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rwxr-xr-x | app/app.php | 2 | ||||
-rw-r--r-- | composer.json | 16 |
3 files changed, 21 insertions, 0 deletions
@@ -1,3 +1,6 @@ custom/config.yml custom/people.opml custom/people.opml.bak + +/vendor/ +composer.lock
\ No newline at end of file diff --git a/app/app.php b/app/app.php index 3a1a8a3..f4af640 100755 --- a/app/app.php +++ b/app/app.php @@ -8,6 +8,8 @@ if ($debug) { error_reporting(0); } +require_once __DIR__.'/../vendor/autoload.php'; + include(dirname(__FILE__).'/lib/lib.opml.php'); include(dirname(__FILE__).'/lib/simplepie/simplepie_1.3.compiled.php'); include(dirname(__FILE__).'/lib/spyc-0.5/spyc.php'); diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..46a8ea3 --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "mauricesvay/moonmoon", + "description": "Moonmoon is a simple feed agregator.", + "homepage": "http://moonmoon.org/", + "type": "project", + "license": "BSD", + "authors": [ + { + "name": "Maurice Svay", + "email": "maurice@svay.com" + } + ], + "minimum-stability": "dev", + "require": { + } +} |