PHPackages                             carthage/elissa-bundle - 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. carthage/elissa-bundle

ActiveSymfony-bundle

carthage/elissa-bundle
======================

Symfony bundle providing out-of-the-box support for PSR-7 and PSR-15.

2.0.1(7mo ago)2432MITPHPPHP ^8.1

Since Jul 26Pushed 7mo ago3 watchersCompare

[ Source](https://github.com/carthage-software/elissa-bundle)[ Packagist](https://packagist.org/packages/carthage/elissa-bundle)[ RSS](/packages/carthage-elissa-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (10)Versions (5)Used By (0)

Elissa Bundle - PSR-7 &amp; PSR-15 Made Easy!
=============================================

[](#elissa-bundle---psr-7--psr-15-made-easy)

Elissa Bundle by Carthage Software brings out-of-the-box PSR-7 and PSR-15 support to your Symfony project.

The package allows developers to write PSR-15 handlers and middleware, which are auto-tagged and ready to use as controllers.

It also provides ready access to all PSR-7 factories, and enables seamless integration of middleware from third-party vendor packages.

Installation 🚀
--------------

[](#installation-)

Install the Elissa Bundle using Composer with the following command:

```
composer require carthage-software/elissa-bundle
```

Enabling the Bundle 🎚
---------------------

[](#enabling-the-bundle-)

To enable the bundle in your Symfony project, add the following line in the `config/bundles.php` file:

```
return [
    //...
    CarthageSoftware\ElissaBundle\ElissaBundle::class => ['all' => true],
    //...
];
```

Usage 💼
-------

[](#usage-)

### PSR-7 Factories 🏭

[](#psr-7-factories-)

The Elissa Bundle comes with autowired and pre-configured PSR-7 factories. You can conveniently create PSR-7 objects in your services without any extra configuration.

```
