PHPackages                             livecms/core - 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. [Framework](/categories/framework)
4. /
5. livecms/core

ActiveLibrary[Framework](/categories/framework)

livecms/core
============

Live CMS Core

v1.0.14(9y ago)35601MIT

Since Sep 3Compare

[ Source](https://github.com/livecms/core)[ Packagist](https://packagist.org/packages/livecms/core)[ Docs](https://github.com/livecms/core)[ RSS](/packages/livecms-core/feed)WikiDiscussions Synced yesterday

READMEChangelogDependencies (12)Versions (27)Used By (1)

Project LiveCMS - CORE
======================

[](#project-livecms---core)

\##For Laravel 5.2, please checkout branch V0

How To Install :
================

[](#how-to-install-)

1. Create Laravel Project (5.3.\*)

    ```
         composer create-project laravel/laravel liveCMS --prefer-dist

    ```
2. Edit composer.json Change :

    ```
        "config": {
            "preferred-install": "dist"
        }

    ```

    with :

    ```
        "minimum-stability": "dev",
        "prefer-stable": true

    ```
3. After finish, add livecms core in your project

    ```
         cd liveCMS
         composer require livecms/core

    ```
4. open file config/app.php Before :

    ```
        App\Providers\AppServiceProvider::class,
        App\Providers\AuthServiceProvider::class,
        App\Providers\EventServiceProvider::class,
        App\Providers\RouteServiceProvider::class,

    ```

    add this :

    ```
        Mrofi\LaravelSharedHostingPackage\LaravelSharedHostingPackageServiceProvider::class,
        Barryvdh\Debugbar\ServiceProvider::class,
        Yajra\Datatables\DatatablesServiceProvider::class,
        UxWeb\SweetAlert\SweetAlertServiceProvider::class,
        LiveCMS\Support\LiveCMSSupportServiceProvider::class,
        RoketId\ImageMax\ImageMaxServiceProvider::class,
        LiveCMS\Providers\LiveCMSServiceProvider::class,

    ```

    and add to 'aliases'

    ```
        'Debugbar' => Barryvdh\Debugbar\Facade::class,
        'Datatables' => Yajra\Datatables\Datatables::class,
        'Form' => Collective\Html\FormFacade::class,
        'Html' => Collective\Html\HtmlFacade::class,
        'Alert' => UxWeb\SweetAlert\SweetAlert::class,
        'Thumb' => LiveCMS\Support\Thumbnailer\Facades\Thumb::class,
        'ImageMax' => RoketId\ImageMax\ImageMaxFacade::class,
        'Upload' => LiveCMS\Support\Uploader\Facades\Upload::class,

    ```
5. Publish vendor :

    ```
         php artisan vendor:publish --force

    ```
6. Set folder permissions :

    ```
        chmod +w -R public/files/
        chmod +w -R public/uploads/
        chmod +w -R public/users/

    ```
7. Open app/Http/Kernel.php and edit :

    add this line to :

    ```
        protected $middleware = [
            ...

            \LiveCMS\Middleware\GlobalParamsMiddleware::class,
            \LiveCMS\Middleware\HttpsMiddleware::class,
        ];

    ```

    change :

    ```
        protected $routeMiddleware = [
            'auth' => \App\Http\Middleware\Authenticate::class,
            change to :
            'auth' => \LiveCMS\Middleware\Authenticate::class,

            'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
            change to :
            'guest' => \LiveCMS\Middleware\RedirectIfAuthenticated::class,

            add this line :
            'model' => \LiveCMS\Middleware\ModelMiddleware::class,
        ];

    ```
8. Open config/auth.php Edit :

    ```
        'providers' => [
            'users' => [
                'driver' => 'eloquent',
                'model' => LiveCMS\Models\Users\User::class,
            ],

        .......

        'passwords' => [
            'users' => [
                'provider' => 'users',
                'email' => 'livecms::auth.emails.password',
                'table' => 'password_resets',
                'expire' => 60,
            ],
        ],

    ```
9. Update your .env update based on what your site url:

    ```
        APP_URL=yourdomain.com

    ```
10. Artisan Optimize and do Migrate

    ```
        php artisan optimize
        php artisan migrate --seed

    ```
11. Edit your RouteServiceProvider Update mapWebRoutes() method in your app/Providers/RouteServiceProvider.php

    ```
        protected function mapWebRoutes()
        {
            Route::group([
                'middleware' => 'web',
                'namespace' => $this->namespace,
            ], function ($router) {
                liveCMSRouter($router, function ($router, $adminSlug, $subDomain, $subFolder) {
                    require base_path('routes/web.php');
                    frontendRoute($router);
                });
            });
        }

    ```
12. Login visit :

    default username / password

    1. Admin : email : password : admin
    2. Super Admin : email : password : admin

Visit  for more info.

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity73

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

Recently: every ~13 days

Total

25

Last Release

3493d ago

Major Versions

v0.2.7 → v1.0.12016-10-08

v0.x-dev → v1.0.22016-10-10

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7432391?v=4)[Mokhamad Rofiudin](/maintainers/mrofi)[@mrofi](https://github.com/mrofi)

### Embed Badge

![Health badge](/badges/livecms-core/health.svg)

```
[![Health](https://phpackages.com/badges/livecms-core/health.svg)](https://phpackages.com/packages/livecms-core)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[laravel/browser-kit-testing

Provides backwards compatibility for BrowserKit testing in the latest Laravel release.

5149.8M301](/packages/laravel-browser-kit-testing)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[nasirkhan/module-manager

Module Manager &amp; Generator for Laravel Starter Kit (https://github.com/nasirkhan/laravel-starter)

1043.4k5](/packages/nasirkhan-module-manager)[chameleon-system/chameleon-base

The Chameleon System core.

1027.9k4](/packages/chameleon-system-chameleon-base)[sproutcms/cms

Enterprise content management and framework

242.2k4](/packages/sproutcms-cms)

PHPackages © 2026

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