<?xml version="1.0" encoding="UTF-8"?>
<srv:container xmlns="http://symfony.com/schema/dic/security"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:srv="http://symfony.com/schema/dic/services"
    xsi:schemaLocation="http://symfony.com/schema/dic/services https://symfony.com/schema/dic/services/services-1.0.xsd">

    <config>
        <access-decision-manager service="app.access_decision_manager" />

        <provider name="default">
            <memory>
                <user name="foo" password="foo" roles="ROLE_USER" />
            </memory>
        </provider>

        <firewall name="simple" pattern="/login" security="false" />
    </config>
</srv:container>
