PHPackages                             libre-informatique/crm-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. libre-informatique/crm-bundle

ActiveSymfony-bundle

libre-informatique/crm-bundle
=============================

CRM Bundle for Symfony

0.6.4(8y ago)33.7k1[2 issues](https://github.com/libre-informatique/CRMBundle/issues)3LGPL-3.0PHPPHP &gt;=7.1

Since Feb 20Pushed 8y ago5 watchersCompare

[ Source](https://github.com/libre-informatique/CRMBundle)[ Packagist](https://packagist.org/packages/libre-informatique/crm-bundle)[ Docs](https://github.com/libre-informatique/SymfonyLibrinfoCRMBundle)[ RSS](/packages/libre-informatique-crm-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (11)Versions (13)Used By (3)

SymfonyLibrinfoCRMBundle
========================

[](#symfonylibrinfocrmbundle)

[![Build Status](https://camo.githubusercontent.com/1a29cf07c524b5a1c2f2a7e3d04c707268d7b9c891402e7a4786ab8cdeaaeac3/68747470733a2f2f7472617669732d63692e6f72672f6c696272652d696e666f726d6174697175652f43524d42756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/libre-informatique/CRMBundle)[![Coverage Status](https://camo.githubusercontent.com/39d10f88896fe9428c630f1a6570aba4bc5da41d552364a5bd73770a18572a67/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f6c696272652d696e666f726d6174697175652f43524d42756e646c652f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/libre-informatique/CRMBundle?branch=master)[![License](https://camo.githubusercontent.com/104ac89b2b9cc586a192bb694e40d8f8f52db6efb2c034aaea1c75b543b45c7b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6c696272652d696e666f726d6174697175652f43524d42756e646c652e7376673f7374796c653d666c61742d737175617265)](./LICENCE.md)

[![Latest Stable Version](https://camo.githubusercontent.com/b22d6651cab890050a7f8c256e9454e1bbba6fbd10836a85ef2fe1ace87f86e6/68747470733a2f2f706f7365722e707567782e6f72672f6c696272652d696e666f726d6174697175652f63726d2d62756e646c652f762f737461626c65)](https://packagist.org/packages/libre-informatique/crm-bundle)[![Latest Unstable Version](https://camo.githubusercontent.com/6d0f4cbc552f1f17269fcb21900aefe3a6715a434188eca793317d628d707a85/68747470733a2f2f706f7365722e707567782e6f72672f6c696272652d696e666f726d6174697175652f63726d2d62756e646c652f762f756e737461626c65)](https://packagist.org/packages/libre-informatique/crm-bundle)[![Total Downloads](https://camo.githubusercontent.com/61a5ce7de7207f183ece4abccc484be4b34bd4f425e0743e0735cb691b134c67/68747470733a2f2f706f7365722e707567782e6f72672f6c696272652d696e666f726d6174697175652f63726d2d62756e646c652f646f776e6c6f616473)](https://packagist.org/packages/libre-informatique/crm-bundle)

CRM Bundle for Symfony

Installation
============

[](#installation)

Prequiresites
-------------

[](#prequiresites)

- having a working Symfony2 environment
- having created a working Symfony2 app (including your DB and your DB link)
- having composer installed (here in `/usr/local/bin/composer`, having `/usr/local/bin` in your path)

Optional:

- having blast-project/core-bundle installed, or if not, follow the README instructions of the Core bundle

Downloading
-----------

[](#downloading)

```
  $ composer require libre-informatique/crm-bundle dev-master

```

If it fails with the message :

`- libre-informatique/crm-bundle dev-master requires libre-informatique/core-bundle dev-master -> no matching package found.`

Try to install `libre-informatique/core-bundle` first :

```
$ composer require libre-informatique/core-bundle dev-master

```

The Sonata bundles
------------------

[](#the-sonata-bundles)

Do not forget to configure the SonataAdminBundle. e.g.:

```
    // app/AppKernel.php
    // ...
    public function registerBundles()
    {
        $bundles = array(
            // ...

            // Sonata
            new Sonata\CoreBundle\SonataCoreBundle(),
            new Sonata\BlockBundle\SonataBlockBundle(),
            new Knp\Bundle\MenuBundle\KnpMenuBundle(),
            new Sonata\DoctrineORMAdminBundle\SonataDoctrineORMAdminBundle(),
            new Sonata\AdminBundle\SonataAdminBundle(),

            // your personal bundles
        );
    }
    // ...
```

```
# app/config/routing.yml
admin:
    resource: '@SonataAdminBundle/Resources/config/routing/sonata_admin.xml'
    prefix: /

_sonata_admin:
    resource: .
    type: sonata_admin
    prefix: /

```

```
# app/config/config.yml
sonata_block:
    default_contexts: [cms]
    blocks:
        # Enable the SonataAdminBundle block
        sonata.admin.block.admin_list:
            contexts:   [admin]
        # Your other blocks

```

But please, refer to the source doc to get up-to-date :

Just notice that the `prefix` value is `/` instead of `/admin` as advised by the Sonata Project... By the way, it means that this access is universal, and not a specific "backend" interface. That's a specificity of a software package that intends to be focused on professional workflows.

The "libre-informatique" bundles
--------------------------------

[](#the-libre-informatique-bundles)

Edit your app/AppKernel.php file and add the required bundles, here:

```
    // app/AppKernel.php
    // ...
    public function registerBundles()
    {
        $bundles = array(
            // ...

            // The libre-informatique bundles
            new Blast\CoreBundle\BlastCoreBundle(),
            new Librinfo\CRMBundle\LibrinfoCRMBundle(),

            // your personal bundles
        );
    }
    // ...
```

Finish
------

[](#finish)

Publish the assets ...

```
$ app/console assets:install --symlink

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance7

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community24

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~28 days

Total

10

Last Release

3118d ago

PHP version history (3 changes)0.1PHP &gt;=5.4.0

0.4.2PHP &gt;=5.6

0.6.4PHP &gt;=7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/0bbce846c0d9bbaf3fc4f62538f638bb1f093d651e1bca9c0c6e0d97645286f8?d=identicon)[beta](/maintainers/beta)

![](https://www.gravatar.com/avatar/528fb5808674782a7831c0f62b7a66f3375bddb4ed3359106f70d89190d33ba2?d=identicon)[marcoslibre](/maintainers/marcoslibre)

![](https://www.gravatar.com/avatar/928e77bd50201c2a30df571e6ff90c01a8cdfe29eec21f57fb7c143ba7c1a35e?d=identicon)[RomainSanchez](/maintainers/RomainSanchez)

![](https://www.gravatar.com/avatar/fc3ab5e7bcedd6769ea7ea27b9b65157b62b4b127296dd6762388d400193b054?d=identicon)[BlastCI](/maintainers/BlastCI)

![](https://www.gravatar.com/avatar/e713ec6a484c9ae54cdd4ab19c8c998a4b11e636792c2d4565894d67bbfa9136?d=identicon)[LibreInfo](/maintainers/LibreInfo)

---

Top Contributors

[![betaglop](https://avatars.githubusercontent.com/u/5788263?v=4)](https://github.com/betaglop "betaglop (34 commits)")[![sentinellesduweb](https://avatars.githubusercontent.com/u/53866807?v=4)](https://github.com/sentinellesduweb "sentinellesduweb (17 commits)")[![FanchTheSystem](https://avatars.githubusercontent.com/u/882203?v=4)](https://github.com/FanchTheSystem "FanchTheSystem (10 commits)")[![NicolasSdw](https://avatars.githubusercontent.com/u/15262688?v=4)](https://github.com/NicolasSdw "NicolasSdw (7 commits)")[![RomainSanchez](https://avatars.githubusercontent.com/u/18164227?v=4)](https://github.com/RomainSanchez "RomainSanchez (5 commits)")[![PapsOu](https://avatars.githubusercontent.com/u/5792207?v=4)](https://github.com/PapsOu "PapsOu (3 commits)")

---

Tags

crmcrm-bundlesonatasymfonysymfonysonatae-venementlibio

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/libre-informatique-crm-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/libre-informatique-crm-bundle/health.svg)](https://phpackages.com/packages/libre-informatique-crm-bundle)
```

###  Alternatives

[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[picoss/sonata-extra-admin-bundle

Sonata Extra admin features

1962.3k](/packages/picoss-sonata-extra-admin-bundle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
