This bundle provides a wrapper for using all-inkl API inside symfony applications.
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
composer require nucleos/allinkl-bundle
If you want to use sonata blocks to use widgets:
composer require sonata-project/block-bundle
Then, enable the bundle by adding it to the list of registered bundles in config/bundles.php
file of your project:
// config/bundles.php
return [
// ...
Nucleos\AllInklBundle\NucleosAllInklBundle::class => ['all' => true],
];
{# template.twig #}
{{ sonata_block_render({ 'type': 'nucleos_allinkl.block.space_statistic' }, {
'login': 'XXX',
'password': 'XXX'
}) }}
You can't use this bundle properly, if you have 2FA enabled.
This bundle is under the MIT license.