PHPackages                             omegacode/symfony-fluid-integration - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. omegacode/symfony-fluid-integration

ActiveSymfony-bundle[Templating &amp; Views](/categories/templating)

omegacode/symfony-fluid-integration
===================================

Integrates the template engine fluid into symfony 4 projects.

0.7.0(7y ago)072MITPHP

Since Aug 14Pushed 7y ago1 watchersCompare

[ Source](https://github.com/0m3gaC0d3/symfony-fluid-integration)[ Packagist](https://packagist.org/packages/omegacode/symfony-fluid-integration)[ Docs](https://github.com/alphajunge/symfony-fluid-integration)[ RSS](/packages/omegacode-symfony-fluid-integration/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (6)Versions (10)Used By (0)

Symfony 4 - Fluid integration
=============================

[](#symfony-4---fluid-integration)

! This is currently work in progress. !
---------------------------------------

[](#-this-is-currently-work-in-progress-)

Description
-----------

[](#description)

Integrates the template engine fluid into symfony 4 projects.

Setup
-----

[](#setup)

Open the file `config/services.yaml` and add the following:

```
services:
  templating.engine.fluid:
    public: true
    autowire: true
    class: OmegaCode\FluidIntegration\FluidEngine
    arguments:
    - '@kernel'
    - '@omega_code_fluid_integration.settings'
```

Next, open the file `config/packages/framework.yaml` and add the following:

```
framework:
  templating:
    engines: ['fluid', 'twig', 'php']
```

Finally open the file `config/bundles.php` and add the bundle:

```
