Hi, I would like to install Elastica 3.0.1 in my Symfony /vendors
My composer.json looks like this:
"require": {
"php": ">=5.3.9",
"symfony/symfony": "2.8.*",
"doctrine/orm": "^2.4.8",
"doctrine/doctrine-bundle": "~1.4",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"ruflin/elastica": "~3.1.0"
},
is this possible "ruflin/elastica": "~3.1.0" ?
In the documentation of Elasitca there is :
"require": {
"ruflin/elastica": "dev-master"
}
and when I type:
composer require ruflin/elastica
It installs: Installing ruflin/elastica (2.3.1)
After the installation is there something else I need to do so the autoload namespace path is visible in my project?
Thanks
Nik