diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2012-03-11 15:14:13 +0100 |
|---|---|---|
| committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-11 15:15:33 +0100 |
| commit | e02d92ac62fbe1dc08994444c18a7447d72c56e6 (patch) | |
| tree | ee96cc57586f4b3c4e2998d6ad0d747c5db189a7 /tests/bootstrap.php | |
| parent | 5dd5df46a497631b905f6595707b0d1b0c302749 (diff) | |
| download | forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar.gz forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar.bz2 forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar.xz forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.zip | |
[feature/event-dispatcher] Use real EventDispatcher through composer
* replace the copy-pasta EventDispatcher with the real one from Symfony2
* use composer for managing this dependency, use composer autoloading
PHPBB3-9550
Diffstat (limited to 'tests/bootstrap.php')
| -rw-r--r-- | tests/bootstrap.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index bf946df381..63e6f4b280 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -29,6 +29,8 @@ else define('STRIP', (get_magic_quotes_gpc()) ? true : false); } +require_once $phpbb_root_path . 'vendor/.composer/autoload.php'; + require_once $phpbb_root_path . 'includes/constants.php'; require_once $phpbb_root_path . 'includes/class_loader.' . $phpEx; |
