![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/ApiBundle/Config/ |
<?php declare(strict_types=1); use Mautic\CoreBundle\DependencyInjection\MauticCoreExtension; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; use function Symfony\Component\DependencyInjection\Loader\Configurator\service; return function (ContainerConfigurator $configurator): void { $services = $configurator->services() ->defaults() ->autowire() ->autoconfigure() ->public(); $excludes = [ 'Serializer/Exclusion', 'Helper/BatchIdToEntityHelper.php', ]; $services->load('Mautic\\ApiBundle\\', '../') ->exclude('../{'.implode(',', array_merge(MauticCoreExtension::DEFAULT_EXCLUDES, $excludes)).'}'); $services->load('Mautic\\ApiBundle\\Entity\\oAuth2\\', '../Entity/oAuth2/*Repository.php'); $services->get(Mautic\ApiBundle\Controller\oAuth2\AuthorizeController::class) ->arg('$authorizeForm', service('fos_oauth_server.authorize.form')) ->arg('$authorizeFormHandler', service('fos_oauth_server.authorize.form.handler.default')) ->arg('$oAuth2Server', service('fos_oauth_server.server')) ->arg('$clientManager', service('fos_oauth_server.client_manager.default')); $services->alias('mautic.api.model.client', Mautic\ApiBundle\Model\ClientModel::class); };