diff options
| author | Maurice Svay <maurice@svay.com> | 2015-08-11 07:45:48 +0200 |
|---|---|---|
| committer | Maurice Svay <maurice@svay.com> | 2015-08-11 07:45:48 +0200 |
| commit | e47418ee75998ae22a506b8fd596dbba58388266 (patch) | |
| tree | ce1761ec71aed8ffcc06f6ef2d1ab7cdb8e48e67 /app/app.php | |
| parent | d477e4492370304f3db94ca6ccd831d161e16efd (diff) | |
| parent | 6114a3b5c070a0247cd672702f8b81c0207012d4 (diff) | |
| download | planet-e47418ee75998ae22a506b8fd596dbba58388266.tar planet-e47418ee75998ae22a506b8fd596dbba58388266.tar.gz planet-e47418ee75998ae22a506b8fd596dbba58388266.tar.bz2 planet-e47418ee75998ae22a506b8fd596dbba58388266.tar.xz planet-e47418ee75998ae22a506b8fd596dbba58388266.zip | |
Merge pull request #74 from nashe/patch-composer
Package the project with Composer
Diffstat (limited to 'app/app.php')
| -rwxr-xr-x | app/app.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/app.php b/app/app.php index 3a1a8a3..702c3cc 100755 --- a/app/app.php +++ b/app/app.php @@ -8,8 +8,9 @@ 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'); include_once(dirname(__FILE__).'/classes/PlanetConfig.php'); @@ -43,5 +44,3 @@ $l10n = new Simplel10n($conf['locale']); function _g($str, $comment='') { return Simplel10n::getString($str); } - - |
