GithubHelp home page GithubHelp logo

jeroenherczeg / laravel-scout-solr Goto Github PK

View Code? Open in Web Editor NEW
11.0 2.0 12.0 26 KB

Solr Driver for Laravel Scout

Home Page: http://solr-driver-for-laravel-scout.readthedocs.io

License: MIT License

PHP 100.00%
solr laravel scout search-engine search

laravel-scout-solr's Introduction

Solr Driver for Laravel Scout



Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads Laravel Scout Apache Solr PHP

Documentation

You can read the documentation here.

Problems, questions or comments?

If you have any problems, questions or comments, feel free to submit an issue and I will reply to you as soon as possible.

Prerequisites

Install Laravel Scout.

Install

Install via Composer

$ composer require jeroenherczeg/laravel-scout-solr

Set your SCOUT_DRIVER to solr:

// .env

...

SCOUT_DRIVER=solr

You must add the Scout service provider and the Solr engine service provider in your app.php config:

// config/app.php

'providers' => [
    ...
        /*
         * Package Service Providers...
         */
        Laravel\Scout\ScoutServiceProvider::class,
        ScoutEngines\Solr\SolrProvider::class,
],

Add the Solr configuration to the scout config file:

// config/scout.php

...

    /*
    |--------------------------------------------------------------------------
    | Solr Configuration
    |--------------------------------------------------------------------------
    |
    | Here you may configure your Solr settings. Solr is the popular, blazing
    | -fast, open source enterprise search platform built on Apache Lucene.
    | If necessary, you can override the configuration in your .env file.
    |
    */

    'solr' => [
        'host' => env('SOLR_HOST', '127.0.0.1'),
        'port' => env('SOLR_PORT', '8983'),
        'path' => env('SOLR_PATH', '/solr/'),
        'core' => env('SOLR_CORE', 'scout'),
    ],

Usage

Now you can use Laravel Scout as described in the official documentation

Using Solr with Laravel Homestead

You can install Solr within your Homestead virtual machine.

Add the port forwarding to your Homestead.yaml

// ~/Homestead/Homestead.yaml

...

ports:
    - send: 18983
      to: 8983
      
...

Add the following install steps to your Homestead after.sh script.

// ~/Homestead/after.sh

#!/bin/sh

# If you would like to do some extra provisioning you may
# add any commands you wish to this file and they will
# be run after the Homestead machine is provisioned.
#
# If you have user-specific configurations you would like
# to apply, you may also create user-customizations.sh,
# which will be run after this script.

# Install Java Runtime Enviroment
sudo apt-get update
sudo apt-get install default-jre -y

# Install Solr 7.5
wget http://www-eu.apache.org/dist/lucene/solr/7.5.0/solr-7.5.0.tgz
tar zxf solr-7.5.0.tgz
cd solr-7.5.0
bin/solr create -c scout
bin/solr start

You will need to recreate your the virtual machine.

vagrant destroy && vagrant up

Once the virtual machine is installed and running, you can access Solr admin on http://127.0.0.1:18983/solr/#/ .

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

laravel-scout-solr's People

Contributors

frittenkeez avatar jeroenherczeg avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

laravel-scout-solr's Issues

Searchable doesn't work in tests - RuntimeException: A facade root has not been set.

Detailed description

fresh installation of laravel 6. follow all of the implementation instructions.

Add 'use Searchable;' to the App\User model.

put $u = new User(); in a test.

run test.

get back the error:

1) SolrEngineTest::test1
RuntimeException: A facade root has not been set.

/var/www/laravel-scout-solr-iateadonut-laravel6/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:258
/var/www/laravel-scout-solr-iateadonut-laravel6/vendor/laravel/scout/src/ModelObserver.php:31
/var/www/laravel-scout-solr-iateadonut-laravel6/vendor/laravel/scout/src/Searchable.php:27
/var/www/laravel-scout-solr-iateadonut-laravel6/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:220
/var/www/laravel-scout-solr-iateadonut-laravel6/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:200
/var/www/laravel-scout-solr-iateadonut-laravel6/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:187
/var/www/laravel-scout-solr-iateadonut-laravel6/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:166
/var/www/laravel-scout-solr/tests/SolrEngineTest.php:20

You'll get this same error by running the test that comes with the package.

You do not get this error running in a route, only through a test.

Your environment

php artisan --version
Laravel Framework 6.20.16

NULL values creating a java.lang.NullPointerException in SOLR

Detailed description

When the models have properties with NULL values, the solr update fails. For example:
( 'id' => 17, 'gender' => NULL, 'type' => 'person', 'first_name' => 'Tobias', 'last_name' => 'Redmann', 'company' => NULL, 'created_at' => '2018-10-09 16:53:19', 'updated_at' => '2018-10-09 16:53:19', )

Context

We need somehow to make sure, that the update not fails. probably checking the document/model array before for null value and remove them ($model->toSearchableArray()). Otherwise the developer needs to make sure, that the models are without null values.

Your environment

  • Scout 5.*
  • Laravel 5.7.*
  • Solr in Docker 7.4*

Broken abstraction on search attributes

The Scout abstraction is broken: in fact when you use "Builder::search" method it is supposed to accept the string you want to search. Insted, to make this works correctly, you must add the Solr Key too.

Detailed description

It's not possible to search within some key. Or at least is impossible to do it without 'hacking' the way this driver works.
I'm using this Scout engine to use it against Solr. So far so good.
I implemented my own SearchableArray to be saved on Solr and everything works nice.
Then I tried to search within a key, but the search did not worked.

Debugging i was able to make it works: but i had to search for $key.':'.$searchString instead of $searchString alone.

Context

That's how my model is translated on Solr:

    /**
     * Get the indexable data array for the model.
     */
    public function toSearchableArray(): array
    {
        //return $this->toArray();
        return [
            'id' => $this->id,
            'terms' => \strip_tags(
                \sprintf(
                    '%s %s %s %s %s',
                    $this->name,
                    $this->description_title,
                    $this->description_text,
                    $this->box_title,
                    $this->box_text,
                )
            ),
            'tags' => $this->tags->pluck('name')->toArray(),
        ];
    }

That's the way Scout docs suggest to make search.
Eg: Search for word "Hello" into terms key:

$collectionTerms = Service::search('hello')->within('terms')->get();

This does not works. To make it works as expected you have to "hack" it this way:

$collectionTerms = Service::search('terms:hello')->get(); //->within('terms') part is not necessary anymore

or use where

$collectionTerms = Service::search()->where('terms', 'hello')->get;

Possible implementation

Would be nice if the "within" attribute would be used into search instead of using "where" (that is nice too)

Your environment

Include as many relevant details about the environment you experienced the bug in and how to reproduce it.

  • Version used PHP 7.4)
  • Operating system and version (Ubuntu 18.04)

`composer test` does not run

Detailed description

composer test

[Symfony\Component\Console\Exception\CommandNotFoundException]
Command "test" is not defined.

Your environment

php artisan --version
Laravel Framework 6.20.16

In Client.php line 353: Endpoint table_name not available

Detailed description

When I try to "php scout:import Model", I get the error

In Client.php line 353:

Endpoint product_flat not available (product_flat is the $table name)

I can see the "default" core I made at http://127.0.0.1:8983/solr/#/~cores/default .

I've put this into my config/scout.php file

'solr' => [
    'host' => env('SOLR_HOST', '127.0.0.1'),
    'port' => env('SOLR_PORT', '8983'),
    'path' => env('SOLR_PATH', '/solr/'),
    'core' => env('SOLR_CORE', 'default'),
],

and have this in my .env:

SCOUT_QUEUE=false
SCOUT_DRIVER=solr

SOLR_HOST=127.0.0.1
SOLR_PORT=8983
SOLR_PATH=/solr/
SOLR_CORE=default

Your environment

php 7.3, laravel 6.18.20

entire error message:

[2020-10-31 12:55:08] local.ERROR: Endpoint product_flat not available {"exception":"[object] (Solarium\Exception\OutOfBoundsException(code: 0): Endpoint product_flat not available at /var/www/bagisto/vendor/solarium/solarium/src/Core/Client/Client.php:353)
[stacktrace]
#0 /var/www/bagisto/vendor/solarium/solarium/src/Core/Client/Client.php(805): Solarium\Core\Client\Client->getEndpoint('product_flat')
#1 /var/www/bagisto/vendor/solarium/solarium/src/Core/Client/Client.php(782): Solarium\Core\Client\Client->executeRequest(Object(Solarium\Core\Client\Request), 'product_flat')
#2 /var/www/bagisto/vendor/solarium/solarium/src/Core/Client/Client.php(868): Solarium\Core\Client\Client->execute(Object(Solarium\QueryType\Update\Query\Query), 'product_flat')
#3 /var/www/bagisto/vendor/jeroenherczeg/laravel-scout-solr/src/SolrEngine.php(64): Solarium\Core\Client\Client->update(Object(Solarium\QueryType\Update\Query\Query), 'product_flat')
#4 /var/www/bagisto/vendor/laravel/scout/src/Searchable.php(63): ScoutEngines\Solr\SolrEngine->update(Object(Illuminate\Database\Eloquent\Collection))
#5 /var/www/bagisto/vendor/laravel/scout/src/Searchable.php(42): Models\ProductFlat->queueMakeSearchable(Object(Illuminate\Database\Eloquent\Collection))
#6 [internal function]: Illuminate\Database\Eloquent\Collection->Laravel\Scout\{closure}()
#7 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Support/Traits/Macroable.php(111): call_user_func_array(Object(Closure), Array)
#8 /var/www/bagisto/vendor/laravel/scout/src/SearchableScope.php(36): Illuminate\Support\Collection->__call('searchable', Array)
#9 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Database/Concerns/BuildsQueries.php(103): Laravel\Scout\SearchableScope->Laravel\Scout\{closure}(Object(Illuminate\Database\Eloquent\Collection))
#10 /var/www/bagisto/vendor/laravel/scout/src/SearchableScope.php(39): Illuminate\Database\Eloquent\Builder->chunkById(500, Object(Closure))
#11 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1350): Laravel\Scout\SearchableScope->Laravel\Scout\{closure}(Object(Illuminate\Database\Eloquent\Builder), NULL)
#12 /var/www/bagisto/vendor/laravel/scout/src/Searchable.php(133): Illuminate\Database\Eloquent\Builder->__call('searchable', Array)
#13 /var/www/bagisto/vendor/laravel/scout/src/Console/ImportCommand.php(45): Models\ProductFlat::makeAllSearchable(NULL)
#14 [internal function]: Laravel\Scout\Console\ImportCommand->handle(Object(Illuminate\Events\Dispatcher))
#15 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(32): call_user_func_array(Array, Array)
#16 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Container/Util.php(37): Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
#17 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(90): Illuminate\Container\Util::unwrapIfClosure(Object(Closure))
#18 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(34): Illuminate\Container\BoundMethod::callBoundMethod(Object(Illuminate\Foundation\Application), Array, Object(Closure))
#19 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Container/Container.php(590): Illuminate\Container\BoundMethod::call(Object(Illuminate\Foundation\Application), Array, Array, NULL)
#20 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Console/Command.php(134): Illuminate\Container\Container->call(Array)
#21 /var/www/bagisto/vendor/symfony/console/Command/Command.php(255): Illuminate\Console\Command->execute(Object(Symfony\Component\Console\Input\ArgvInput), Object(Illuminate\Console\OutputStyle))
#22 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Console/Command.php(121): Symfony\Component\Console\Command\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Illuminate\Console\OutputStyle))
#23 /var/www/bagisto/vendor/symfony/console/Application.php(1000): Illuminate\Console\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#24 /var/www/bagisto/vendor/symfony/console/Application.php(271): Symfony\Component\Console\Application->doRunCommand(Object(Laravel\Scout\Console\ImportCommand), Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#25 /var/www/bagisto/vendor/symfony/console/Application.php(147): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#26 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Console/Application.php(93): Symfony\Component\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#27 /var/www/bagisto/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(131): Illuminate\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#28 /var/www/bagisto/artisan(37): Illuminate\Foundation\Console\Kernel->handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#29 {main}

cannot install on laravel 7

Detailed description

fresh install of laravel 7

composer require jeroenherczeg/laravel-scout-solr
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2.0 is now available and you should upgrade. See https://getcomposer.org/2
Using version ^0.1.3 for jeroenherczeg/laravel-scout-solr
./composer.json has been updated
Loading composer repositories with package information
Warning from https://repo.packagist.org: You are using an outdated version of Composer. Composer 2.0 is now available and you should upgrade. See https://getcomposer.org/2
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Conclusion: remove symfony/console v5.2.3
    - Conclusion: don't install symfony/console v5.2.3
    - symfony/event-dispatcher 2.7.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 2.8.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.0-BETA2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.13 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.14 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.15 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.16 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.17 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.18 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.19 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.20 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.21 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.22 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.23 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.24 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.25 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.26 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.27 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.28 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.29 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.30 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.31 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.32 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.33 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.34 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.35 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.36 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.37 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.38 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.39 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.40 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.41 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.42 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.43 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.44 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.45 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.46 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.47 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.48 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.49 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.50 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.51 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.7.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.13 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.14 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.15 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.16 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.17 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.18 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.19 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.20 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.21 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.22 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.23 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.24 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.25 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.26 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.27 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.28 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.29 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.30 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.31 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.32 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.33 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.34 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.35 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.36 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.37 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.38 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.39 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.40 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.41 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.42 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.43 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.44 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.45 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.46 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.47 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.48 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.49 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.50 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.52 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v2.8.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 3.0.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.0.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 3.1.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 3.2.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 3.3.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 3.4.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.0-RC1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.1.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.0-RC1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.0-RC2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.13 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.14 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.2.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.0-RC1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.13 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.14 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.15 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.16 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.17 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.18 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.3.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.0-BETA2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.0-BETA3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.0-BETA4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.0-RC1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.0-RC2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.13 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.14 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.15 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.16 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.17 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.18 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.19 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.20 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.21 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.22 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.23 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.24 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.25 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.26 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.27 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.28 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.29 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.30 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.31 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.32 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.33 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.34 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.35 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.36 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.37 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.38 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.39 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.40 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.41 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.42 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.43 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.44 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.45 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.46 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.47 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v3.4.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 4.0.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 4.1.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 4.2.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher 4.3.x-dev conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.0-BETA2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.0-BETA3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.0-BETA4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.0-RC1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.0-RC2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.13 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.14 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.15 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.0.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.0-BETA2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.0-BETA3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.1.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.0-BETA2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.0-RC1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.12 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.2.9 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.0 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.0-BETA1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.0-BETA2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.0-RC1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.1 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.10 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.11 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.2 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.3 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.4 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.5 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.6 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.7 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.8 conflicts with symfony/console[v5.2.3].
    - symfony/event-dispatcher v4.3.9 conflicts with symfony/console[v5.2.3].
    - Installation request for symfony/console (locked at v5.2.3) -> satisfiable by symfony/console[v5.2.3].
    - Installation request for jeroenherczeg/laravel-scout-solr ^0.1.3 -> satisfiable by jeroenherczeg/laravel-scout-solr[v0.1.3].
    - Conclusion: don't install symfony/event-dispatcher v5.2.3|install symfony/event-dispatcher 2.7.x-dev|install symfony/event-dispatcher 2.8.x-dev|install symfony/event-dispatcher 3.0.x-dev|install symfony/event-dispatcher 3.1.x-dev|install symfony/event-dispatcher 3.2.x-dev|install symfony/event-dispatcher 3.3.x-dev|install symfony/event-dispatcher 3.4.x-dev|install symfony/event-dispatcher 4.0.x-dev|install symfony/event-dispatcher 4.1.x-dev|install symfony/event-dispatcher 4.2.x-dev|install symfony/event-dispatcher 4.3.x-dev|install symfony/event-dispatcher v2.7.0|install symfony/event-dispatcher v2.7.0-BETA1|install symfony/event-dispatcher v2.7.0-BETA2|install symfony/event-dispatcher v2.7.1|install symfony/event-dispatcher v2.7.10|install symfony/event-dispatcher v2.7.11|install symfony/event-dispatcher v2.7.12|install symfony/event-dispatcher v2.7.13|install symfony/event-dispatcher v2.7.14|install symfony/event-dispatcher v2.7.15|install symfony/event-dispatcher v2.7.16|install symfony/event-dispatcher v2.7.17|install symfony/event-dispatcher v2.7.18|install symfony/event-dispatcher v2.7.19|install symfony/event-dispatcher v2.7.2|install symfony/event-dispatcher v2.7.20|install symfony/event-dispatcher v2.7.21|install symfony/event-dispatcher v2.7.22|install symfony/event-dispatcher v2.7.23|install symfony/event-dispatcher v2.7.24|install symfony/event-dispatcher v2.7.25|install symfony/event-dispatcher v2.7.26|install symfony/event-dispatcher v2.7.27|install symfony/event-dispatcher v2.7.28|install symfony/event-dispatcher v2.7.29|install symfony/event-dispatcher v2.7.3|install symfony/event-dispatcher v2.7.30|install symfony/event-dispatcher v2.7.31|install symfony/event-dispatcher v2.7.32|install symfony/event-dispatcher v2.7.33|install symfony/event-dispatcher v2.7.34|install symfony/event-dispatcher v2.7.35|install symfony/event-dispatcher v2.7.36|install symfony/event-dispatcher v2.7.37|install symfony/event-dispatcher v2.7.38|install symfony/event-dispatcher v2.7.39|install symfony/event-dispatcher v2.7.4|install symfony/event-dispatcher v2.7.40|install symfony/event-dispatcher v2.7.41|install symfony/event-dispatcher v2.7.42|install symfony/event-dispatcher v2.7.43|install symfony/event-dispatcher v2.7.44|install symfony/event-dispatcher v2.7.45|install symfony/event-dispatcher v2.7.46|install symfony/event-dispatcher v2.7.47|install symfony/event-dispatcher v2.7.48|install symfony/event-dispatcher v2.7.49|install symfony/event-dispatcher v2.7.5|install symfony/event-dispatcher v2.7.50|install symfony/event-dispatcher v2.7.51|install symfony/event-dispatcher v2.7.6|install symfony/event-dispatcher v2.7.7|install symfony/event-dispatcher v2.7.8|install symfony/event-dispatcher v2.7.9|install symfony/event-dispatcher v2.8.0|install symfony/event-dispatcher v2.8.0-BETA1|install symfony/event-dispatcher v2.8.1|install symfony/event-dispatcher v2.8.10|install symfony/event-dispatcher v2.8.11|install symfony/event-dispatcher v2.8.12|install symfony/event-dispatcher v2.8.13|install symfony/event-dispatcher v2.8.14|install symfony/event-dispatcher v2.8.15|install symfony/event-dispatcher v2.8.16|install symfony/event-dispatcher v2.8.17|install symfony/event-dispatcher v2.8.18|install symfony/event-dispatcher v2.8.19|install symfony/event-dispatcher v2.8.2|install symfony/event-dispatcher v2.8.20|install symfony/event-dispatcher v2.8.21|install symfony/event-dispatcher v2.8.22|install symfony/event-dispatcher v2.8.23|install symfony/event-dispatcher v2.8.24|install symfony/event-dispatcher v2.8.25|install symfony/event-dispatcher v2.8.26|install symfony/event-dispatcher v2.8.27|install symfony/event-dispatcher v2.8.28|install symfony/event-dispatcher v2.8.29|install symfony/event-dispatcher v2.8.3|install symfony/event-dispatcher v2.8.30|install symfony/event-dispatcher v2.8.31|install symfony/event-dispatcher v2.8.32|install symfony/event-dispatcher v2.8.33|install symfony/event-dispatcher v2.8.34|install symfony/event-dispatcher v2.8.35|install symfony/event-dispatcher v2.8.36|install symfony/event-dispatcher v2.8.37|install symfony/event-dispatcher v2.8.38|install symfony/event-dispatcher v2.8.39|install symfony/event-dispatcher v2.8.4|install symfony/event-dispatcher v2.8.40|install symfony/event-dispatcher v2.8.41|install symfony/event-dispatcher v2.8.42|install symfony/event-dispatcher v2.8.43|install symfony/event-dispatcher v2.8.44|install symfony/event-dispatcher v2.8.45|install symfony/event-dispatcher v2.8.46|install symfony/event-dispatcher v2.8.47|install symfony/event-dispatcher v2.8.48|install symfony/event-dispatcher v2.8.49|install symfony/event-dispatcher v2.8.5|install symfony/event-dispatcher v2.8.50|install symfony/event-dispatcher v2.8.52|install symfony/event-dispatcher v2.8.6|install symfony/event-dispatcher v2.8.7|install symfony/event-dispatcher v2.8.8|install symfony/event-dispatcher v2.8.9|install symfony/event-dispatcher v3.0.0|install symfony/event-dispatcher v3.0.0-BETA1|install symfony/event-dispatcher v3.0.1|install symfony/event-dispatcher v3.0.2|install symfony/event-dispatcher v3.0.3|install symfony/event-dispatcher v3.0.4|install symfony/event-dispatcher v3.0.5|install symfony/event-dispatcher v3.0.6|install symfony/event-dispatcher v3.0.7|install symfony/event-dispatcher v3.0.8|install symfony/event-dispatcher v3.0.9|install symfony/event-dispatcher v3.1.0|install symfony/event-dispatcher v3.1.0-BETA1|install symfony/event-dispatcher v3.1.0-RC1|install symfony/event-dispatcher v3.1.1|install symfony/event-dispatcher v3.1.10|install symfony/event-dispatcher v3.1.2|install symfony/event-dispatcher v3.1.3|install symfony/event-dispatcher v3.1.4|install symfony/event-dispatcher v3.1.5|install symfony/event-dispatcher v3.1.6|install symfony/event-dispatcher v3.1.7|install symfony/event-dispatcher v3.1.8|install symfony/event-dispatcher v3.1.9|install symfony/event-dispatcher v3.2.0|install symfony/event-dispatcher v3.2.0-BETA1|install symfony/event-dispatcher v3.2.0-RC1|install symfony/event-dispatcher v3.2.0-RC2|install symfony/event-dispatcher v3.2.1|install symfony/event-dispatcher v3.2.10|install symfony/event-dispatcher v3.2.11|install symfony/event-dispatcher v3.2.12|install symfony/event-dispatcher v3.2.13|install symfony/event-dispatcher v3.2.14|install symfony/event-dispatcher v3.2.2|install symfony/event-dispatcher v3.2.3|install symfony/event-dispatcher v3.2.4|install symfony/event-dispatcher v3.2.5|install symfony/event-dispatcher v3.2.6|install symfony/event-dispatcher v3.2.7|install symfony/event-dispatcher v3.2.8|install symfony/event-dispatcher v3.2.9|install symfony/event-dispatcher v3.3.0|install symfony/event-dispatcher v3.3.0-BETA1|install symfony/event-dispatcher v3.3.0-RC1|install symfony/event-dispatcher v3.3.1|install symfony/event-dispatcher v3.3.10|install symfony/event-dispatcher v3.3.11|install symfony/event-dispatcher v3.3.12|install symfony/event-dispatcher v3.3.13|install symfony/event-dispatcher v3.3.14|install symfony/event-dispatcher v3.3.15|install symfony/event-dispatcher v3.3.16|install symfony/event-dispatcher v3.3.17|install symfony/event-dispatcher v3.3.18|install symfony/event-dispatcher v3.3.2|install symfony/event-dispatcher v3.3.3|install symfony/event-dispatcher v3.3.4|install symfony/event-dispatcher v3.3.5|install symfony/event-dispatcher v3.3.6|install symfony/event-dispatcher v3.3.7|install symfony/event-dispatcher v3.3.8|install symfony/event-dispatcher v3.3.9|install symfony/event-dispatcher v3.4.0|install symfony/event-dispatcher v3.4.0-BETA1|install symfony/event-dispatcher v3.4.0-BETA2|install symfony/event-dispatcher v3.4.0-BETA3|install symfony/event-dispatcher v3.4.0-BETA4|install symfony/event-dispatcher v3.4.0-RC1|install symfony/event-dispatcher v3.4.0-RC2|install symfony/event-dispatcher v3.4.1|install symfony/event-dispatcher v3.4.10|install symfony/event-dispatcher v3.4.11|install symfony/event-dispatcher v3.4.12|install symfony/event-dispatcher v3.4.13|install symfony/event-dispatcher v3.4.14|install symfony/event-dispatcher v3.4.15|install symfony/event-dispatcher v3.4.16|install symfony/event-dispatcher v3.4.17|install symfony/event-dispatcher v3.4.18|install symfony/event-dispatcher v3.4.19|install symfony/event-dispatcher v3.4.2|install symfony/event-dispatcher v3.4.20|install symfony/event-dispatcher v3.4.21|install symfony/event-dispatcher v3.4.22|install symfony/event-dispatcher v3.4.23|install symfony/event-dispatcher v3.4.24|install symfony/event-dispatcher v3.4.25|install symfony/event-dispatcher v3.4.26|install symfony/event-dispatcher v3.4.27|install symfony/event-dispatcher v3.4.28|install symfony/event-dispatcher v3.4.29|install symfony/event-dispatcher v3.4.3|install symfony/event-dispatcher v3.4.30|install symfony/event-dispatcher v3.4.31|install symfony/event-dispatcher v3.4.32|install symfony/event-dispatcher v3.4.33|install symfony/event-dispatcher v3.4.34|install symfony/event-dispatcher v3.4.35|install symfony/event-dispatcher v3.4.36|install symfony/event-dispatcher v3.4.37|install symfony/event-dispatcher v3.4.38|install symfony/event-dispatcher v3.4.39|install symfony/event-dispatcher v3.4.4|install symfony/event-dispatcher v3.4.40|install symfony/event-dispatcher v3.4.41|install symfony/event-dispatcher v3.4.42|install symfony/event-dispatcher v3.4.43|install symfony/event-dispatcher v3.4.44|install symfony/event-dispatcher v3.4.45|install symfony/event-dispatcher v3.4.46|install symfony/event-dispatcher v3.4.47|install symfony/event-dispatcher v3.4.5|install symfony/event-dispatcher v3.4.6|install symfony/event-dispatcher v3.4.7|install symfony/event-dispatcher v3.4.8|install symfony/event-dispatcher v3.4.9|install symfony/event-dispatcher v4.0.0|install symfony/event-dispatcher v4.0.0-BETA1|install symfony/event-dispatcher v4.0.0-BETA2|install symfony/event-dispatcher v4.0.0-BETA3|install symfony/event-dispatcher v4.0.0-BETA4|install symfony/event-dispatcher v4.0.0-RC1|install symfony/event-dispatcher v4.0.0-RC2|install symfony/event-dispatcher v4.0.1|install symfony/event-dispatcher v4.0.10|install symfony/event-dispatcher v4.0.11|install symfony/event-dispatcher v4.0.12|install symfony/event-dispatcher v4.0.13|install symfony/event-dispatcher v4.0.14|install symfony/event-dispatcher v4.0.15|install symfony/event-dispatcher v4.0.2|install symfony/event-dispatcher v4.0.3|install symfony/event-dispatcher v4.0.4|install symfony/event-dispatcher v4.0.5|install symfony/event-dispatcher v4.0.6|install symfony/event-dispatcher v4.0.7|install symfony/event-dispatcher v4.0.8|install symfony/event-dispatcher v4.0.9|install symfony/event-dispatcher v4.1.0|install symfony/event-dispatcher v4.1.0-BETA1|install symfony/event-dispatcher v4.1.0-BETA2|install symfony/event-dispatcher v4.1.0-BETA3|install symfony/event-dispatcher v4.1.1|install symfony/event-dispatcher v4.1.10|install symfony/event-dispatcher v4.1.11|install symfony/event-dispatcher v4.1.12|install symfony/event-dispatcher v4.1.2|install symfony/event-dispatcher v4.1.3|install symfony/event-dispatcher v4.1.4|install symfony/event-dispatcher v4.1.5|install symfony/event-dispatcher v4.1.6|install symfony/event-dispatcher v4.1.7|install symfony/event-dispatcher v4.1.8|install symfony/event-dispatcher v4.1.9|install symfony/event-dispatcher v4.2.0|install symfony/event-dispatcher v4.2.0-BETA1|install symfony/event-dispatcher v4.2.0-BETA2|install symfony/event-dispatcher v4.2.0-RC1|install symfony/event-dispatcher v4.2.1|install symfony/event-dispatcher v4.2.10|install symfony/event-dispatcher v4.2.11|install symfony/event-dispatcher v4.2.12|install symfony/event-dispatcher v4.2.2|install symfony/event-dispatcher v4.2.3|install symfony/event-dispatcher v4.2.4|install symfony/event-dispatcher v4.2.5|install symfony/event-dispatcher v4.2.6|install symfony/event-dispatcher v4.2.7|install symfony/event-dispatcher v4.2.8|install symfony/event-dispatcher v4.2.9|install symfony/event-dispatcher v4.3.0|install symfony/event-dispatcher v4.3.0-BETA1|install symfony/event-dispatcher v4.3.0-BETA2|install symfony/event-dispatcher v4.3.0-RC1|install symfony/event-dispatcher v4.3.1|install symfony/event-dispatcher v4.3.10|install symfony/event-dispatcher v4.3.11|install symfony/event-dispatcher v4.3.2|install symfony/event-dispatcher v4.3.3|install symfony/event-dispatcher v4.3.4|install symfony/event-dispatcher v4.3.5|install symfony/event-dispatcher v4.3.6|install symfony/event-dispatcher v4.3.7|install symfony/event-dispatcher v4.3.8|install symfony/event-dispatcher v4.3.9
    - Conclusion: remove symfony/event-dispatcher v5.2.3|install symfony/event-dispatcher 2.7.x-dev|install symfony/event-dispatcher 2.8.x-dev|install symfony/event-dispatcher 3.0.x-dev|install symfony/event-dispatcher 3.1.x-dev|install symfony/event-dispatcher 3.2.x-dev|install symfony/event-dispatcher 3.3.x-dev|install symfony/event-dispatcher 3.4.x-dev|install symfony/event-dispatcher 4.0.x-dev|install symfony/event-dispatcher 4.1.x-dev|install symfony/event-dispatcher 4.2.x-dev|install symfony/event-dispatcher 4.3.x-dev|install symfony/event-dispatcher v2.7.0|install symfony/event-dispatcher v2.7.0-BETA1|install symfony/event-dispatcher v2.7.0-BETA2|install symfony/event-dispatcher v2.7.1|install symfony/event-dispatcher v2.7.10|install symfony/event-dispatcher v2.7.11|install symfony/event-dispatcher v2.7.12|install symfony/event-dispatcher v2.7.13|install symfony/event-dispatcher v2.7.14|install symfony/event-dispatcher v2.7.15|install symfony/event-dispatcher v2.7.16|install symfony/event-dispatcher v2.7.17|install symfony/event-dispatcher v2.7.18|install symfony/event-dispatcher v2.7.19|install symfony/event-dispatcher v2.7.2|install symfony/event-dispatcher v2.7.20|install symfony/event-dispatcher v2.7.21|install symfony/event-dispatcher v2.7.22|install symfony/event-dispatcher v2.7.23|install symfony/event-dispatcher v2.7.24|install symfony/event-dispatcher v2.7.25|install symfony/event-dispatcher v2.7.26|install symfony/event-dispatcher v2.7.27|install symfony/event-dispatcher v2.7.28|install symfony/event-dispatcher v2.7.29|install symfony/event-dispatcher v2.7.3|install symfony/event-dispatcher v2.7.30|install symfony/event-dispatcher v2.7.31|install symfony/event-dispatcher v2.7.32|install symfony/event-dispatcher v2.7.33|install symfony/event-dispatcher v2.7.34|install symfony/event-dispatcher v2.7.35|install symfony/event-dispatcher v2.7.36|install symfony/event-dispatcher v2.7.37|install symfony/event-dispatcher v2.7.38|install symfony/event-dispatcher v2.7.39|install symfony/event-dispatcher v2.7.4|install symfony/event-dispatcher v2.7.40|install symfony/event-dispatcher v2.7.41|install symfony/event-dispatcher v2.7.42|install symfony/event-dispatcher v2.7.43|install symfony/event-dispatcher v2.7.44|install symfony/event-dispatcher v2.7.45|install symfony/event-dispatcher v2.7.46|install symfony/event-dispatcher v2.7.47|install symfony/event-dispatcher v2.7.48|install symfony/event-dispatcher v2.7.49|install symfony/event-dispatcher v2.7.5|install symfony/event-dispatcher v2.7.50|install symfony/event-dispatcher v2.7.51|install symfony/event-dispatcher v2.7.6|install symfony/event-dispatcher v2.7.7|install symfony/event-dispatcher v2.7.8|install symfony/event-dispatcher v2.7.9|install symfony/event-dispatcher v2.8.0|install symfony/event-dispatcher v2.8.0-BETA1|install symfony/event-dispatcher v2.8.1|install symfony/event-dispatcher v2.8.10|install symfony/event-dispatcher v2.8.11|install symfony/event-dispatcher v2.8.12|install symfony/event-dispatcher v2.8.13|install symfony/event-dispatcher v2.8.14|install symfony/event-dispatcher v2.8.15|install symfony/event-dispatcher v2.8.16|install symfony/event-dispatcher v2.8.17|install symfony/event-dispatcher v2.8.18|install symfony/event-dispatcher v2.8.19|install symfony/event-dispatcher v2.8.2|install symfony/event-dispatcher v2.8.20|install symfony/event-dispatcher v2.8.21|install symfony/event-dispatcher v2.8.22|install symfony/event-dispatcher v2.8.23|install symfony/event-dispatcher v2.8.24|install symfony/event-dispatcher v2.8.25|install symfony/event-dispatcher v2.8.26|install symfony/event-dispatcher v2.8.27|install symfony/event-dispatcher v2.8.28|install symfony/event-dispatcher v2.8.29|install symfony/event-dispatcher v2.8.3|install symfony/event-dispatcher v2.8.30|install symfony/event-dispatcher v2.8.31|install symfony/event-dispatcher v2.8.32|install symfony/event-dispatcher v2.8.33|install symfony/event-dispatcher v2.8.34|install symfony/event-dispatcher v2.8.35|install symfony/event-dispatcher v2.8.36|install symfony/event-dispatcher v2.8.37|install symfony/event-dispatcher v2.8.38|install symfony/event-dispatcher v2.8.39|install symfony/event-dispatcher v2.8.4|install symfony/event-dispatcher v2.8.40|install symfony/event-dispatcher v2.8.41|install symfony/event-dispatcher v2.8.42|install symfony/event-dispatcher v2.8.43|install symfony/event-dispatcher v2.8.44|install symfony/event-dispatcher v2.8.45|install symfony/event-dispatcher v2.8.46|install symfony/event-dispatcher v2.8.47|install symfony/event-dispatcher v2.8.48|install symfony/event-dispatcher v2.8.49|install symfony/event-dispatcher v2.8.5|install symfony/event-dispatcher v2.8.50|install symfony/event-dispatcher v2.8.52|install symfony/event-dispatcher v2.8.6|install symfony/event-dispatcher v2.8.7|install symfony/event-dispatcher v2.8.8|install symfony/event-dispatcher v2.8.9|install symfony/event-dispatcher v3.0.0|install symfony/event-dispatcher v3.0.0-BETA1|install symfony/event-dispatcher v3.0.1|install symfony/event-dispatcher v3.0.2|install symfony/event-dispatcher v3.0.3|install symfony/event-dispatcher v3.0.4|install symfony/event-dispatcher v3.0.5|install symfony/event-dispatcher v3.0.6|install symfony/event-dispatcher v3.0.7|install symfony/event-dispatcher v3.0.8|install symfony/event-dispatcher v3.0.9|install symfony/event-dispatcher v3.1.0|install symfony/event-dispatcher v3.1.0-BETA1|install symfony/event-dispatcher v3.1.0-RC1|install symfony/event-dispatcher v3.1.1|install symfony/event-dispatcher v3.1.10|install symfony/event-dispatcher v3.1.2|install symfony/event-dispatcher v3.1.3|install symfony/event-dispatcher v3.1.4|install symfony/event-dispatcher v3.1.5|install symfony/event-dispatcher v3.1.6|install symfony/event-dispatcher v3.1.7|install symfony/event-dispatcher v3.1.8|install symfony/event-dispatcher v3.1.9|install symfony/event-dispatcher v3.2.0|install symfony/event-dispatcher v3.2.0-BETA1|install symfony/event-dispatcher v3.2.0-RC1|install symfony/event-dispatcher v3.2.0-RC2|install symfony/event-dispatcher v3.2.1|install symfony/event-dispatcher v3.2.10|install symfony/event-dispatcher v3.2.11|install symfony/event-dispatcher v3.2.12|install symfony/event-dispatcher v3.2.13|install symfony/event-dispatcher v3.2.14|install symfony/event-dispatcher v3.2.2|install symfony/event-dispatcher v3.2.3|install symfony/event-dispatcher v3.2.4|install symfony/event-dispatcher v3.2.5|install symfony/event-dispatcher v3.2.6|install symfony/event-dispatcher v3.2.7|install symfony/event-dispatcher v3.2.8|install symfony/event-dispatcher v3.2.9|install symfony/event-dispatcher v3.3.0|install symfony/event-dispatcher v3.3.0-BETA1|install symfony/event-dispatcher v3.3.0-RC1|install symfony/event-dispatcher v3.3.1|install symfony/event-dispatcher v3.3.10|install symfony/event-dispatcher v3.3.11|install symfony/event-dispatcher v3.3.12|install symfony/event-dispatcher v3.3.13|install symfony/event-dispatcher v3.3.14|install symfony/event-dispatcher v3.3.15|install symfony/event-dispatcher v3.3.16|install symfony/event-dispatcher v3.3.17|install symfony/event-dispatcher v3.3.18|install symfony/event-dispatcher v3.3.2|install symfony/event-dispatcher v3.3.3|install symfony/event-dispatcher v3.3.4|install symfony/event-dispatcher v3.3.5|install symfony/event-dispatcher v3.3.6|install symfony/event-dispatcher v3.3.7|install symfony/event-dispatcher v3.3.8|install symfony/event-dispatcher v3.3.9|install symfony/event-dispatcher v3.4.0|install symfony/event-dispatcher v3.4.0-BETA1|install symfony/event-dispatcher v3.4.0-BETA2|install symfony/event-dispatcher v3.4.0-BETA3|install symfony/event-dispatcher v3.4.0-BETA4|install symfony/event-dispatcher v3.4.0-RC1|install symfony/event-dispatcher v3.4.0-RC2|install symfony/event-dispatcher v3.4.1|install symfony/event-dispatcher v3.4.10|install symfony/event-dispatcher v3.4.11|install symfony/event-dispatcher v3.4.12|install symfony/event-dispatcher v3.4.13|install symfony/event-dispatcher v3.4.14|install symfony/event-dispatcher v3.4.15|install symfony/event-dispatcher v3.4.16|install symfony/event-dispatcher v3.4.17|install symfony/event-dispatcher v3.4.18|install symfony/event-dispatcher v3.4.19|install symfony/event-dispatcher v3.4.2|install symfony/event-dispatcher v3.4.20|install symfony/event-dispatcher v3.4.21|install symfony/event-dispatcher v3.4.22|install symfony/event-dispatcher v3.4.23|install symfony/event-dispatcher v3.4.24|install symfony/event-dispatcher v3.4.25|install symfony/event-dispatcher v3.4.26|install symfony/event-dispatcher v3.4.27|install symfony/event-dispatcher v3.4.28|install symfony/event-dispatcher v3.4.29|install symfony/event-dispatcher v3.4.3|install symfony/event-dispatcher v3.4.30|install symfony/event-dispatcher v3.4.31|install symfony/event-dispatcher v3.4.32|install symfony/event-dispatcher v3.4.33|install symfony/event-dispatcher v3.4.34|install symfony/event-dispatcher v3.4.35|install symfony/event-dispatcher v3.4.36|install symfony/event-dispatcher v3.4.37|install symfony/event-dispatcher v3.4.38|install symfony/event-dispatcher v3.4.39|install symfony/event-dispatcher v3.4.4|install symfony/event-dispatcher v3.4.40|install symfony/event-dispatcher v3.4.41|install symfony/event-dispatcher v3.4.42|install symfony/event-dispatcher v3.4.43|install symfony/event-dispatcher v3.4.44|install symfony/event-dispatcher v3.4.45|install symfony/event-dispatcher v3.4.46|install symfony/event-dispatcher v3.4.47|install symfony/event-dispatcher v3.4.5|install symfony/event-dispatcher v3.4.6|install symfony/event-dispatcher v3.4.7|install symfony/event-dispatcher v3.4.8|install symfony/event-dispatcher v3.4.9|install symfony/event-dispatcher v4.0.0|install symfony/event-dispatcher v4.0.0-BETA1|install symfony/event-dispatcher v4.0.0-BETA2|install symfony/event-dispatcher v4.0.0-BETA3|install symfony/event-dispatcher v4.0.0-BETA4|install symfony/event-dispatcher v4.0.0-RC1|install symfony/event-dispatcher v4.0.0-RC2|install symfony/event-dispatcher v4.0.1|install symfony/event-dispatcher v4.0.10|install symfony/event-dispatcher v4.0.11|install symfony/event-dispatcher v4.0.12|install symfony/event-dispatcher v4.0.13|install symfony/event-dispatcher v4.0.14|install symfony/event-dispatcher v4.0.15|install symfony/event-dispatcher v4.0.2|install symfony/event-dispatcher v4.0.3|install symfony/event-dispatcher v4.0.4|install symfony/event-dispatcher v4.0.5|install symfony/event-dispatcher v4.0.6|install symfony/event-dispatcher v4.0.7|install symfony/event-dispatcher v4.0.8|install symfony/event-dispatcher v4.0.9|install symfony/event-dispatcher v4.1.0|install symfony/event-dispatcher v4.1.0-BETA1|install symfony/event-dispatcher v4.1.0-BETA2|install symfony/event-dispatcher v4.1.0-BETA3|install symfony/event-dispatcher v4.1.1|install symfony/event-dispatcher v4.1.10|install symfony/event-dispatcher v4.1.11|install symfony/event-dispatcher v4.1.12|install symfony/event-dispatcher v4.1.2|install symfony/event-dispatcher v4.1.3|install symfony/event-dispatcher v4.1.4|install symfony/event-dispatcher v4.1.5|install symfony/event-dispatcher v4.1.6|install symfony/event-dispatcher v4.1.7|install symfony/event-dispatcher v4.1.8|install symfony/event-dispatcher v4.1.9|install symfony/event-dispatcher v4.2.0|install symfony/event-dispatcher v4.2.0-BETA1|install symfony/event-dispatcher v4.2.0-BETA2|install symfony/event-dispatcher v4.2.0-RC1|install symfony/event-dispatcher v4.2.1|install symfony/event-dispatcher v4.2.10|install symfony/event-dispatcher v4.2.11|install symfony/event-dispatcher v4.2.12|install symfony/event-dispatcher v4.2.2|install symfony/event-dispatcher v4.2.3|install symfony/event-dispatcher v4.2.4|install symfony/event-dispatcher v4.2.5|install symfony/event-dispatcher v4.2.6|install symfony/event-dispatcher v4.2.7|install symfony/event-dispatcher v4.2.8|install symfony/event-dispatcher v4.2.9|install symfony/event-dispatcher v4.3.0|install symfony/event-dispatcher v4.3.0-BETA1|install symfony/event-dispatcher v4.3.0-BETA2|install symfony/event-dispatcher v4.3.0-RC1|install symfony/event-dispatcher v4.3.1|install symfony/event-dispatcher v4.3.10|install symfony/event-dispatcher v4.3.11|install symfony/event-dispatcher v4.3.2|install symfony/event-dispatcher v4.3.3|install symfony/event-dispatcher v4.3.4|install symfony/event-dispatcher v4.3.5|install symfony/event-dispatcher v4.3.6|install symfony/event-dispatcher v4.3.7|install symfony/event-dispatcher v4.3.8|install symfony/event-dispatcher v4.3.9
    - jeroenherczeg/laravel-scout-solr v0.1.3 requires solarium/solarium ^4.2 -> satisfiable by solarium/solarium[4.2.0, 4.2.0-beta.1, 4.2.0-rc.1, 4.3.0-alpha.2, 4.3.0-alpha1, 4.x-dev].
    - solarium/solarium 4.x-dev requires symfony/event-dispatcher ^3.1 || ^4.0 -> satisfiable by symfony/event-dispatcher[3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, 4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.41, v3.4.42, v3.4.43, v3.4.44, v3.4.45, v3.4.46, v3.4.47, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10, v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9, v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.10, v4.4.11, v4.4.12, v4.4.13, v4.4.14, v4.4.15, v4.4.16, v4.4.17, v4.4.18, v4.4.19, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8, v4.4.9].
    - solarium/solarium 4.3.0-alpha1 requires symfony/event-dispatcher ^3.1 || ^4.0 -> satisfiable by symfony/event-dispatcher[3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, 4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.41, v3.4.42, v3.4.43, v3.4.44, v3.4.45, v3.4.46, v3.4.47, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10, v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9, v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.10, v4.4.11, v4.4.12, v4.4.13, v4.4.14, v4.4.15, v4.4.16, v4.4.17, v4.4.18, v4.4.19, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8, v4.4.9].
    - solarium/solarium 4.3.0-alpha.2 requires symfony/event-dispatcher ^3.1 || ^4.0 -> satisfiable by symfony/event-dispatcher[3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, 4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.41, v3.4.42, v3.4.43, v3.4.44, v3.4.45, v3.4.46, v3.4.47, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10, v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9, v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.10, v4.4.11, v4.4.12, v4.4.13, v4.4.14, v4.4.15, v4.4.16, v4.4.17, v4.4.18, v4.4.19, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8, v4.4.9].
    - solarium/solarium 4.2.0-rc.1 requires symfony/event-dispatcher ^2.7 || ^3.0 || ^4.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, 4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.41, v3.4.42, v3.4.43, v3.4.44, v3.4.45, v3.4.46, v3.4.47, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10, v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9, v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.10, v4.4.11, v4.4.12, v4.4.13, v4.4.14, v4.4.15, v4.4.16, v4.4.17, v4.4.18, v4.4.19, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8, v4.4.9].
    - solarium/solarium 4.2.0-beta.1 requires symfony/event-dispatcher ^2.7 || ^3.0 || ^4.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, 4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.41, v3.4.42, v3.4.43, v3.4.44, v3.4.45, v3.4.46, v3.4.47, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10, v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9, v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.10, v4.4.11, v4.4.12, v4.4.13, v4.4.14, v4.4.15, v4.4.16, v4.4.17, v4.4.18, v4.4.19, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8, v4.4.9].
    - solarium/solarium 4.2.0 requires symfony/event-dispatcher ^2.7 || ^3.0 || ^4.0 -> satisfiable by symfony/event-dispatcher[2.7.x-dev, 2.8.x-dev, 3.0.x-dev, 3.1.x-dev, 3.2.x-dev, 3.3.x-dev, 3.4.x-dev, 4.0.x-dev, 4.1.x-dev, 4.2.x-dev, 4.3.x-dev, 4.4.x-dev, v2.7.0, v2.7.0-BETA1, v2.7.0-BETA2, v2.7.1, v2.7.10, v2.7.11, v2.7.12, v2.7.13, v2.7.14, v2.7.15, v2.7.16, v2.7.17, v2.7.18, v2.7.19, v2.7.2, v2.7.20, v2.7.21, v2.7.22, v2.7.23, v2.7.24, v2.7.25, v2.7.26, v2.7.27, v2.7.28, v2.7.29, v2.7.3, v2.7.30, v2.7.31, v2.7.32, v2.7.33, v2.7.34, v2.7.35, v2.7.36, v2.7.37, v2.7.38, v2.7.39, v2.7.4, v2.7.40, v2.7.41, v2.7.42, v2.7.43, v2.7.44, v2.7.45, v2.7.46, v2.7.47, v2.7.48, v2.7.49, v2.7.5, v2.7.50, v2.7.51, v2.7.6, v2.7.7, v2.7.8, v2.7.9, v2.8.0, v2.8.0-BETA1, v2.8.1, v2.8.10, v2.8.11, v2.8.12, v2.8.13, v2.8.14, v2.8.15, v2.8.16, v2.8.17, v2.8.18, v2.8.19, v2.8.2, v2.8.20, v2.8.21, v2.8.22, v2.8.23, v2.8.24, v2.8.25, v2.8.26, v2.8.27, v2.8.28, v2.8.29, v2.8.3, v2.8.30, v2.8.31, v2.8.32, v2.8.33, v2.8.34, v2.8.35, v2.8.36, v2.8.37, v2.8.38, v2.8.39, v2.8.4, v2.8.40, v2.8.41, v2.8.42, v2.8.43, v2.8.44, v2.8.45, v2.8.46, v2.8.47, v2.8.48, v2.8.49, v2.8.5, v2.8.50, v2.8.52, v2.8.6, v2.8.7, v2.8.8, v2.8.9, v3.0.0, v3.0.0-BETA1, v3.0.1, v3.0.2, v3.0.3, v3.0.4, v3.0.5, v3.0.6, v3.0.7, v3.0.8, v3.0.9, v3.1.0, v3.1.0-BETA1, v3.1.0-RC1, v3.1.1, v3.1.10, v3.1.2, v3.1.3, v3.1.4, v3.1.5, v3.1.6, v3.1.7, v3.1.8, v3.1.9, v3.2.0, v3.2.0-BETA1, v3.2.0-RC1, v3.2.0-RC2, v3.2.1, v3.2.10, v3.2.11, v3.2.12, v3.2.13, v3.2.14, v3.2.2, v3.2.3, v3.2.4, v3.2.5, v3.2.6, v3.2.7, v3.2.8, v3.2.9, v3.3.0, v3.3.0-BETA1, v3.3.0-RC1, v3.3.1, v3.3.10, v3.3.11, v3.3.12, v3.3.13, v3.3.14, v3.3.15, v3.3.16, v3.3.17, v3.3.18, v3.3.2, v3.3.3, v3.3.4, v3.3.5, v3.3.6, v3.3.7, v3.3.8, v3.3.9, v3.4.0, v3.4.0-BETA1, v3.4.0-BETA2, v3.4.0-BETA3, v3.4.0-BETA4, v3.4.0-RC1, v3.4.0-RC2, v3.4.1, v3.4.10, v3.4.11, v3.4.12, v3.4.13, v3.4.14, v3.4.15, v3.4.16, v3.4.17, v3.4.18, v3.4.19, v3.4.2, v3.4.20, v3.4.21, v3.4.22, v3.4.23, v3.4.24, v3.4.25, v3.4.26, v3.4.27, v3.4.28, v3.4.29, v3.4.3, v3.4.30, v3.4.31, v3.4.32, v3.4.33, v3.4.34, v3.4.35, v3.4.36, v3.4.37, v3.4.38, v3.4.39, v3.4.4, v3.4.40, v3.4.41, v3.4.42, v3.4.43, v3.4.44, v3.4.45, v3.4.46, v3.4.47, v3.4.5, v3.4.6, v3.4.7, v3.4.8, v3.4.9, v4.0.0, v4.0.0-BETA1, v4.0.0-BETA2, v4.0.0-BETA3, v4.0.0-BETA4, v4.0.0-RC1, v4.0.0-RC2, v4.0.1, v4.0.10, v4.0.11, v4.0.12, v4.0.13, v4.0.14, v4.0.15, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6, v4.0.7, v4.0.8, v4.0.9, v4.1.0, v4.1.0-BETA1, v4.1.0-BETA2, v4.1.0-BETA3, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.0-BETA1, v4.2.0-BETA2, v4.2.0-RC1, v4.2.1, v4.2.10, v4.2.11, v4.2.12, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8, v4.2.9, v4.3.0, v4.3.0-BETA1, v4.3.0-BETA2, v4.3.0-RC1, v4.3.1, v4.3.10, v4.3.11, v4.3.2, v4.3.3, v4.3.4, v4.3.5, v4.3.6, v4.3.7, v4.3.8, v4.3.9, v4.4.0, v4.4.0-BETA1, v4.4.0-BETA2, v4.4.0-RC1, v4.4.1, v4.4.10, v4.4.11, v4.4.12, v4.4.13, v4.4.14, v4.4.15, v4.4.16, v4.4.17, v4.4.18, v4.4.19, v4.4.2, v4.4.3, v4.4.4, v4.4.5, v4.4.6, v4.4.7, v4.4.8, v4.4.9].
    - Can only install one of: symfony/event-dispatcher[4.4.x-dev, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.0, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.0-BETA1, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.0-BETA2, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.0-RC1, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.1, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.10, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.11, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.12, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.13, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.14, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.15, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.16, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.17, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.18, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.19, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.2, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.3, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.4, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.5, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.6, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.7, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.8, v5.2.3].
    - Can only install one of: symfony/event-dispatcher[v4.4.9, v5.2.3].
    - Installation request for symfony/event-dispatcher (locked at v5.2.3) -> satisfiable by symfony/event-dispatcher[v5.2.3].


Installation failed, reverting ./composer.json to its original content.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.