PHPackages                             thewellcom/contact-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. [Database &amp; ORM](/categories/database)
4. /
5. thewellcom/contact-bundle

ActiveSymfony-bundle[Database &amp; ORM](/categories/database)

thewellcom/contact-bundle
=========================

Make a contact form easily with this bundle

1.1.1(9y ago)1651MITPHPPHP &gt;=5.3.9

Since Jun 9Pushed 9y ago2 watchersCompare

[ Source](https://github.com/thewellcom/ContactBundle)[ Packagist](https://packagist.org/packages/thewellcom/contact-bundle)[ Docs](https://github.com/twcsamar/ContactBundle)[ RSS](/packages/thewellcom-contact-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (1)Versions (4)Used By (0)

TheWellComContactBundle
=======================

[](#thewellcomcontactbundle)

Configuration:
--------------

[](#configuration)

In app/AppKernel.php

```
class AppKernel extends Kernel
{
    ...

    public function registerBundles()
    {
        ...
        new TheWellCom\ContactBundle\TheWellComContactBundle(),
        ...
    }
}

```

You need to create your own ContactBundle.

And in `YourProjectContactBundle.php`:

```
namespace YourProject\Bundle\ContactBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;

class YourProjectContactBundle extends Bundle
{
    public function getParent()
    {
        return 'TheWellComContactBundle';
    }
}

```

Create the entity Contact:

And in YourProject\\Bundle\\ContactBundle\\Entity\\Contact.php:

```
