Commit bcaa7493 authored by Bas de Nooijer's avatar Bas de Nooijer

Added composer dependency for symfony event dispatcher

parent d29864ae
.idea .idea
build build
phpunit.xml phpunit.xml
composer.phar
composer.lock
vendor
\ No newline at end of file
...@@ -13,7 +13,8 @@ ...@@ -13,7 +13,8 @@
} }
], ],
"require": { "require": {
"php": ">=5.2.0" "php": ">=5.3.0",
"symfony/event-dispatcher": "v2.0.15"
}, },
"autoload": { "autoload": {
"psr-0": { "Solarium": "library/" } "psr-0": { "Solarium": "library/" }
......
...@@ -2,3 +2,5 @@ ...@@ -2,3 +2,5 @@
require(__DIR__.'/../library/Solarium/Autoloader.php'); require(__DIR__.'/../library/Solarium/Autoloader.php');
Solarium\Autoloader::register(); Solarium\Autoloader::register();
require __DIR__.'/../vendor/autoload.php';
\ No newline at end of file
...@@ -43,3 +43,4 @@ spl_autoload_register(function ($class) { ...@@ -43,3 +43,4 @@ spl_autoload_register(function ($class) {
} }
}); });
require __DIR__.'/../vendor/autoload.php';
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment