Installation

This package does not yet have a Symfony Flex recipe. Installation steps must be done manually.

Default configuration files will be copied in the dev environment except for the file defining the services.

Step 1

The easiest way to install it is through Composer

composer require drupol/eulogin-bundle

Step 2

Make sure that the bundle is enabled in config/bundles.php.

You should see a line that looks like the following:

drupol\\EuloginBundle\\EuloginBundle::class => ['all' => true],

Step 3

As this package depends on the package drupol/cas-bundle, you will need to copy some configuration files from that package first.

cp -ar vendor/drupol/cas-bundle/Resources/config/* config/

Then, copy the configuration files from the bundle drupol/eulogin-bundle in your application

cp -ar vendor/drupol/eulogin-bundle/Resources/config/* config/

Warning

It is important to play those commands in the proper order.

Step 4

Edit the configuration file config/packages/dev/cas_bundle.yaml and make the necessary changes to fit your needs.

See more on the dedicated Configuration page.