PHPackages                             mekit/crm-platform - 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. mekit/crm-platform

ActiveProject

mekit/crm-platform
==================

Mekit CRM Platform Skeleton

v1.0.12(11y ago)1386MITPHP

Since Dec 12Pushed 11y ago1 watchersCompare

[ Source](https://github.com/adamjakab/MekitCrmPlatform)[ Packagist](https://packagist.org/packages/mekit/crm-platform)[ Docs](https://github.com/adamjakab/MekitCrmPlatform.git)[ RSS](/packages/mekit-crm-platform/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (2)Versions (13)Used By (0)

CRM Application Skeleton
========================

[](#crm-application-skeleton)

[![Build Status](https://camo.githubusercontent.com/b3eb0a7338e3754ac46303a87cd0be4ae1745cb2bbb579d7d3bf0281692b0a2a/68747470733a2f2f7472617669732d63692e6f72672f6164616d6a616b61622f4d656b697443726d506c6174666f726d2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/adamjakab/MekitCrmPlatform)

This is the application skeleton that will host the following main components:

- Symfony 2
- Oro Platform
- Mekit CRM

After installation you will have a fully working CRM application using the above mentioned main components.

Requirements
------------

[](#requirements)

- PHP 5.4.9 or above with command line interface(CLI)
- PHP Extensions
    - GD
    - Mcrypt
    - JSON
    - ctype
    - Tokenizer
    - SimpleXML
    - PCRE
    - ICU
- MySQL 5.1 or above OR PostgreSQL 9.1 or above

Installation instructions
-------------------------

[](#installation-instructions)

### Install and update Composer

[](#install-and-update-composer)

Make sure you have an updated and working composer installation. If this is not the case or you do not know what composer is then please refer to the instructions on .

- In short, you can grab it by typing:

```
    curl -s https://getcomposer.org/installer | php

```

- Make sure composer is in your path and update it by typing:

```
    php composer.phar selfupdate

```

To spin up the process it can take some time because composer must calculate the dependencies for the packages. Just be patient.

### Download Mekit CRM Platform and Mekit CRM Application

[](#download-mekit-crm-platform-and-mekit-crm-application)

Go to the directory where you want to install the project an launch the install process:

```
    php composer.phar create-project mekit/crm-platform

```

This will download the Mekit CRM platform and automatically install all required dependencies.

When all packages have been downloaded the installer will ask you the following questions and you need to provide the answers for them. In the parenthesis you will find the default answer to the question so if it satisfies you, just press &lt;Enter&gt;:

- database\_driver (pdo\_mysql): You can use MySql(pdo\_mysql) or PostgreSQL(pdo\_pgsql)
- database\_host (127.0.0.1): The ip address of your database server deployment
- database\_port (null): The port on which database server communicates. If you are using the predefined port just press &lt;Enter&gt;
- database\_name (null): The name of your database. This database must exist.
- database\_user (null): The username to use to authenticate against the database server
- database\_password (null): The password to use to authenticate against the database server
- mailer\_transport (mail): You will configure this later, so just press &lt;Enter&gt;
- mailer\_host (127.0.0.1): You will configure this later, so just press &lt;Enter&gt;
- mailer\_port (null): You will configure this later, so just press &lt;Enter&gt;
- mailer\_encryption (null): You will configure this later, so just press &lt;Enter&gt;
- mailer\_user (null): You will configure this later, so just press &lt;Enter&gt;
- mailer\_password (null): You will configure this later, so just press &lt;Enter&gt;
- websocket\_host (127.0.0.1): You will configure this later, so just press &lt;Enter&gt;
- websocket\_port (8080): You will configure this later, so just press &lt;Enter&gt;
- session\_handler (session.handler.native\_file): just press &lt;Enter&gt;
- locale (en): just press &lt;Enter&gt;
- secret (ThisTokenIsNotSoSecretSoChangeIt): just press &lt;Enter&gt;
- installed (null): just press &lt;Enter&gt;

All this information you have just typed in has now been saved into the file "app/config/parameters.yml" inside your project folder. You can make modifications to it manually before proceeding to the next step.

When the installation has terminated you will find the application inside a folder named "crm-platform". You can freely rename and move this folder.

### Run the installation process

[](#run-the-installation-process)

Enter the project directory:

```
cd crm-platform

```

and launch the installation process by using the CLI console command:

```
php app/console oro:install --env prod

```

The installer will run requirements checks on your system and if all is ok it will proceed with the installation. If there are unmet requirements, the installer will tell you what problems you've got and it will halt. You will need to satisfy all requirements before you will be able to proceed by relaunching the same console command.

After the installer has populated your database with tables and initial data, it will pause to ask you a few questions. As before, you will need to provide the answers:

- Application URL (): The URL from which the application will be accessible
- Organization name (ORO): The name of your organization
- Username (admin): The username of the administrator
- Email: The email of the administrator
- First name: The first name of the administrator
- Last name: The last name of the administrator
- Password: The password of the administrator
- Load sample data (y/n): Normally you'd say 'n'. Some bundles provide sample data for demonstration purposes,

The installer will run for another while to create and optimize some client side resources (css, js) and it will finally finish by saying: 'Oro Application has been successfully installed in prod mode.'

### Set up web server

[](#set-up-web-server)

The proper configuration of your web server is out of the scope of this guide but to get you up and running it it should be sufficient to set up a virtual host serving files from the subdirectory "web" under your project root. The '.htaccess' file inside this folder will instruct your Apache web server to serve the 'app.php' file automatically.

There are lots of ways to configure Apache or Nginx (these are the most recommended ones) so this giude will not provide configuration instructions for them. The important thing is to set the base directory of your vhost to the "\[project directory\]/web" folder.

Please refer to: [http://symfony.com/doc/2.3/cookbook/configuration/web\_server\_configuration.html](http://symfony.com/doc/2.3/cookbook/configuration/web_server_configuration.html)

Advanced configuration (to be written)
--------------------------------------

[](#advanced-configuration-to-be-written)

- Enable WebSockets messaging

```
php app/console clank:server --env prod
```

- Configure crontab for automatic execution of scheduled commands:

```
php app/console oro:cron --env prod
```

**Note:** The above command must be put into your crontab manually (write this...).

Notes (to be written)
---------------------

[](#notes-to-be-written)

...

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity70

Established project with proven stability

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 ~8 days

Total

12

Last Release

4076d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/95d88ea4b6f28ba259465557cc7d68ad5d84f5de488bdbbc6a0c3f249ce22da0?d=identicon)[jakabadambalazs](/maintainers/jakabadambalazs)

### Embed Badge

![Health badge](/badges/mekit-crm-platform/health.svg)

```
[![Health](https://phpackages.com/badges/mekit-crm-platform/health.svg)](https://phpackages.com/packages/mekit-crm-platform)
```

###  Alternatives

[oro/crm

OroCRM

67583.2k24](/packages/oro-crm)[oro/platform-application

Oro Platform Empty Application

2401.4k](/packages/oro-platform-application)[oro/commerce

OroCommerce - an open-source Business to Business Commerce application. \\nThis package contains bundles and needs to be added as a dependency in an OroCommerce application.

20547.6k62](/packages/oro-commerce)[diamante/desk-application

DiamanteDesk Application

1221.9k](/packages/diamante-desk-application)[oro/customer-portal

1447.2k2](/packages/oro-customer-portal)[diamante/desk-bundle

DiamanteDesk Bundle

461.9k6](/packages/diamante-desk-bundle)

PHPackages © 2026

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