PHPackages                             phpjit/symfony-facade - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. phpjit/symfony-facade

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

phpjit/symfony-facade
=====================

Symfonys facade for The Laravel Framework.

01PHP

Since Mar 8Pushed 5y agoCompare

[ Source](https://github.com/taciclei/symfony-facade)[ Packagist](https://packagist.org/packages/phpjit/symfony-facade)[ RSS](/packages/phpjit-symfony-facade/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![TravisBuild](https://camo.githubusercontent.com/9d4e7ce52b5cd46629552ca04715d15e684e39881150a11a978df51ce2defb4a/68747470733a2f2f7472617669732d63692e6f72672f56696c6e697573546563686e6f6c6f67792f73796d666f6e792d6661636164652e737667)](https://camo.githubusercontent.com/9d4e7ce52b5cd46629552ca04715d15e684e39881150a11a978df51ce2defb4a/68747470733a2f2f7472617669732d63692e6f72672f56696c6e697573546563686e6f6c6f67792f73796d666f6e792d6661636164652e737667)\[!\[Scrutinizer Code Quality\] ()\] () [![CodeCoverage](https://camo.githubusercontent.com/4db2792a51475060b6f6f7cfd0c9220db07083fcf8bbfd44dafe00c4dd436647/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f622f6c6d696b656c696f6e69732f73796d666f6e79732d6661636164652f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://camo.githubusercontent.com/4db2792a51475060b6f6f7cfd0c9220db07083fcf8bbfd44dafe00c4dd436647/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f622f6c6d696b656c696f6e69732f73796d666f6e79732d6661636164652f6261646765732f636f7665726167652e706e673f623d6d6173746572)

Symfonys facade for Laravel
===========================

[](#symfonys-facade-for-laravel)

This package lets you use Symfony specific bundles inside Laravel application. Simply add you Symfony centric bundle to `composer.json` install it, configure it and enjoy it ;)

It supporst such features as:

- Symfony's dependency injection container that loads from standard symfony config files.
- Route porting. Routes that are configured in `routes.yml` files are being accessible from Laravel.
- Symfony commands can be executed with artisan command of from admin form.

As this package is still in early beta, not all functions and compatibilities are tested and developed.

Installation and configuration
==============================

[](#installation-and-configuration)

Add it to composer:

` $ composer require taciclei/symfonys-facade`

Register pacakage
-----------------

[](#register-pacakage)

Add this to the bottom of your `config\app.php` in to providers key:

```
  /*
  * Custom
  */
 'Phpjit\SymfonysFacade\SymfonysFacadeServiceProvider',
```

In namespace `Phpjit` (path: `$LARVEL_PROJECT_ROOT/packages/Phpjit/`) create file `SymfonyBundles.php`, with these contents:

```
