migrate to composer
This commit is contained in:
parent
7bbe108106
commit
0d0ca28af3
1 changed files with 6 additions and 2 deletions
|
@ -12,8 +12,12 @@ if (!defined('DOKU_INC')) die();
|
||||||
if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/');
|
if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/');
|
||||||
require_once DOKU_PLUGIN . 'syntax.php';
|
require_once DOKU_PLUGIN . 'syntax.php';
|
||||||
|
|
||||||
// TODO migrate this to composer
|
require_once __DIR__ . DIRECTORY_SEPARATOR . '../packagist/vendor/autoload.php';
|
||||||
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'objectrepresentation' . DIRECTORY_SEPARATOR . 'DokuWikiObjectRepresentation.class.php';
|
|
||||||
|
use enko\dokuwiki\objectrepresentation\DokuWikiIterator;
|
||||||
|
use enko\dokuwiki\objectrepresentation\DokuWikiNode;
|
||||||
|
use enko\dokuwiki\objectrepresentation\DokuWikiNameSpace;
|
||||||
|
use enko\dokuwiki\objectrepresentation\DokuWikiPage;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All DokuWiki plugins to extend the parser/rendering mechanism
|
* All DokuWiki plugins to extend the parser/rendering mechanism
|
||||||
|
|
Reference in a new issue