a2global / crm-bundle
User-friendly CRM
Installs: 234
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: ^7.1.3
- doctrine/inflector: ^1.3
- symfony/config: ^4.0
- symfony/dependency-injection: ^4.0
- symfony/http-kernel: ^4.0
- symfony/yaml: ^4.0
Requires (Dev)
- symfony/phpunit-bridge: ^5.0
This package is auto-updated.
Last update: 2022-07-18 17:15:20 UTC
README
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require a2global/crm-bundle
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php return [ // ... A2Global\CRMBundle\A2CRMBundle::class => ['all' => true], ];
Step 3: Enable the routes
Create new file config/routes/crm.yaml
and import crm routes by adding following lines to this file:
# config/routes/crm.yaml _crm: resource: '@A2CRMBundle/Resources/config/routes.yaml'
Additional information
URL Rules:
Web-site pages, available for everybody: /*
CRM (Protected area with CRM functionality): /crm/*
CRM Settings (Advanced configurations for admins and dev-env only): /crm/settings/*