PHPackages                             coderstudios/cscms - 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. coderstudios/cscms

ActiveLibrary[Framework](/categories/framework)

coderstudios/cscms
==================

Coder Studios CMS package

1.0.2.13(4y ago)0178MITPHPPHP ^7.3|^8.0

Since Mar 7Pushed 4y ago1 watchersCompare

[ Source](https://github.com/coderstudios/cscms)[ Packagist](https://packagist.org/packages/coderstudios/cscms)[ RSS](/packages/coderstudios-cscms/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (5)Versions (19)Used By (0)

CsCms
=====

[](#cscms)

CsCms is a CMS package in PHP for use with a Laravel project.

[![Latest Stable Version](https://camo.githubusercontent.com/b036fbc0c4e42f6663e5828e3f6d4fb9c2cbd8a7a5a799f86170e759b9aedb25/68747470733a2f2f706f7365722e707567782e6f72672f636f64657273747564696f732f6373636d732f762f737461626c65)](https://packagist.org/packages/coderstudios/cscms)[![Total Downloads](https://camo.githubusercontent.com/57716a0ec3f14ae40fa070a23e4d9c1f516cda135fe055ee334410ba44ab105f/68747470733a2f2f706f7365722e707567782e6f72672f636f64657273747564696f732f6373636d732f646f776e6c6f616473)](https://packagist.org/packages/coderstudios/cscms)[![Latest Unstable Version](https://camo.githubusercontent.com/72825ce3d3eca7342d92dc63806e33f98449e78baaa9f4d5bd81f499949d9979/68747470733a2f2f706f7365722e707567782e6f72672f636f64657273747564696f732f6373636d732f762f756e737461626c65)](https://packagist.org/packages/coderstudios/cscms)[![License](https://camo.githubusercontent.com/5f6dae5264de782e543aa99b38f719166023f31e84ae0e94cf5bc28617345cad/68747470733a2f2f706f7365722e707567782e6f72672f636f64657273747564696f732f6373636d732f6c6963656e7365)](https://packagist.org/packages/coderstudios/cscms)

Composer
--------

[](#composer)

To install CsCms as a Composer package to be used with Laravel 5+, simply add this to your composer.json:

```
"coderstudios/cscms": "1.0.*"
```

..and run `composer update`.

Edit App\\Exceptions\\Handler.php

..add the use statement

```
Illuminate\Auth\AuthenticationException;

```

and override the unauthenticated default function with the following

```
    /**
     * Convert an authentication exception into a response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Auth\AuthenticationException  $exception
     * @return \Illuminate\Http\Response
     */
    protected function unauthenticated($request, AuthenticationException $exception)
    {
        $path = route('frontend.login');
        if ($request->is('admin/*') || $request->is('admin')) {
            $path = route('backend.login');
        }
        return $request->expectsJson()
                    ? response()->json(['message' => $exception->getMessage()], 401)
                    : redirect()->guest($path);
    }
```

Update auth.php replace providers array with config:

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

```

On a fresh install of laravel run:

1. php artisan vendor:publish --provider="CoderStudios\\CsCms\\CsCmsServiceProvider"
2. php artisan migrate
3. php artisan cscms:install

If you are developing your own theme, ensure you add the view composer relevant to your theme in the AppServiceProvider.php boot method

```
    view()->composer(config('CsCms.coderstudios.theme').'.layouts.master','CoderStudios\CsCms\Composers\Frontend\MasterComposer');

```

Documentation
-------------

[](#documentation)

Once the package is installed you can add

```
    "@php artisan cscms:update"

```

to your composer.json so that on package update, any cached data or views get cleared automatically to account for any new package updates

Example update composer.json file

```
    "@php artisan package:discover",
    "@php artisan cscms:update"

```

Updating
--------

[](#updating)

\#Assets

php artisan vendor:publish --provider="CoderStudios\\CsCms\\CsCmsServiceProvider"

php artisan vendor:publish --tag=public --force

php artisan vendor:publish --tag=resource --force

php artisan vendor:publish --tag=config --force

php artisan vendor:publish --tag=views --force

php artisan vendor:publish --tag=migrations --force

php artisan vendor:publish --tag=lang --force

Copyright and Licence
---------------------

[](#copyright-and-licence)

CsCms has been written by Coder Studios and is released under the MIT License.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 98.2% of commits — single point of failure

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

Total

18

Last Release

1520d ago

PHP version history (2 changes)1.0.0PHP &gt;=5.4.0

1.0.1PHP ^7.3|^8.0

### Community

Maintainers

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

---

Top Contributors

[![ritey](https://avatars.githubusercontent.com/u/588686?v=4)](https://github.com/ritey "ritey (166 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")

---

Tags

laravelcmscoderstudios

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/coderstudios-cscms/health.svg)

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

###  Alternatives

[reinvanoyen/cmf

A flexible and extendable solution for all your content management needs

1025.5k](/packages/reinvanoyen-cmf)[astrotomic/stancy

This package aims to provide the most common and flexible CMS features to your Laravel project.

351.3k1](/packages/astrotomic-stancy)[sinevia/laravel-cms

Content Management System for Laravel

241.4k](/packages/sinevia-laravel-cms)

PHPackages © 2026

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