# By Manuel Raynaud (92) and others # Via Manuel Raynaud (28) and others * 'master' of https://github.com/thelia/thelia: (212 commits) fix typo add some php doc integrate swiftMailer as mailer solution add swiftmailer in composer use dump autoloader in all compser scripts remove script part of composer.json file fix typo add some information for OSX requirements No alert bloc default country Autofocus on username field for better use Beautiful login page feed loop is now countable Change error page design Add validation button on form - Edit country view creation - Delete and edit modalbox creation - Countries routes management Completed template management fix faker fix faker script Working : Fixture : cleaning ...
49 lines
1.4 KiB
XML
Executable File
49 lines
1.4 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<config xmlns="http://thelia.net/schema/dic/config"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://thelia.net/schema/dic/config http://thelia.net/schema/dic/config/thelia-1.0.xsd">
|
|
|
|
<loops>
|
|
<!-- sample definition
|
|
<loop name="MySuperLoop" class="MyModule\Loop\MySuperLoop" />
|
|
-->
|
|
</loops>
|
|
|
|
<forms>
|
|
<!--
|
|
<form name="MyFormName" class="MyModule\Form\MySuperForm" />
|
|
-->
|
|
</forms>
|
|
|
|
<commands>
|
|
<!--
|
|
<command class="MyModule\Command\MySuperCommand" />
|
|
-->
|
|
</commands>
|
|
|
|
<templateDirectives>
|
|
<!-- Sample definition
|
|
<templateDirectives class="MyModule\Directive\MyTemplateDirective" name="my_filter"/>
|
|
-->
|
|
</templateDirectives>
|
|
|
|
|
|
<services>
|
|
<service id="debugBar" class="DebugBar\DebugBar"/>
|
|
|
|
<service id="smarty.debugbar" class="DebugBar\Smarty\Plugin\DebugBar">
|
|
<argument type="service" id="debugBar"/>
|
|
<argument >%kernel.debug%</argument>
|
|
<tag name="thelia.parser.register_plugin"/>
|
|
</service>
|
|
|
|
<service id="debugBar.listener" class="DebugBar\Listeners\DebugBarListeners">
|
|
<argument type="service" id="service_container"/>
|
|
<tag name="kernel.event_subscriber"/>
|
|
</service>
|
|
</services>
|
|
|
|
|
|
</config>
|