PHPackages                             innosoft/cms - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. innosoft/cms

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

innosoft/cms
============

The InnoSoft's CMS

v2.2(5y ago)0428MITCSS

Since Aug 3Pushed 5y ago2 watchersCompare

[ Source](https://github.com/innosoftvn/cms)[ Packagist](https://packagist.org/packages/innosoft/cms)[ RSS](/packages/innosoft-cms/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (5)DependenciesVersions (6)Used By (0)

InnoSoft CMS
============

[](#innosoft-cms)

Installation
------------

[](#installation)

Require this package in your `composer.json` and update composer. This will download the package and CMS of InnoSoft.

```
"innosoft/cms": "dev-master"

```

Now, let's make our package "visible" to main Laravel structure, and assign alias to it, we do that by adding this line to main `composer.json` section called **"psr-4"**:

```
"autoload": {
      "classmap": [
          "database"
      ],
      "psr-4": {
          "App\\": "app/",
          "InnoSoft\\CMS\\": "vendor/innosoft/cms/src"
      }
},

```

And then we run this command from main folder:

```
composer dump-autoload

```

Then add the following lines to the `config/app.php`:

```
'providers' => [
    // ...

    /*
     * InnoSoft Application Providers
     */
    InnoSoft\CMS\CMSServiceProvider::class,

    // ...
],

```

And then, to perform actual copying, user should **publish** our views, with **Artisan** command:

```
php artisan vendor:publish

```

Adding `helpers.php` to main `composer.json` section called **"files"**:

```
"autoload": {
      "classmap": [
          "database"
      ],
      "psr-4": {
          "App\\": "app/",
          "InnoSoft\\CMS\\": "vendor/innosoft/cms/src"
      },
      "files": [
  		  "helpers.php"
  	  ]
},

```

And run this command from main folder:

```
composer dump-autoload

```

Then add the following lines to the `routes.php`:

```
Route::group(['middleware' => ['web']], function () {
    Route::group([ 'prefix' => 'admin' ], function(){
        Route::any('{paths?}', "\InnoSoft\CMS\CMSController@route")->where('paths', '([A-Za-z0-9\-\/]+)');
    });

    Route::get('/', function () {
        echo 'Frontend template not found - Backend';
    });
});

```

Finally, install database for cms with `vendor\innosoft\cms\src\db\install.sql`.

Configuration
-------------

[](#configuration)

*(To be continued)*

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 75% 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 ~407 days

Total

5

Last Release

1991d ago

Major Versions

v1.1 → v2.02021-01-16

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1745230?v=4)[innosoft](/maintainers/innosoft)[@InnoSoft](https://github.com/InnoSoft)

---

Top Contributors

[![nv-hoang](https://avatars.githubusercontent.com/u/143596674?v=4)](https://github.com/nv-hoang "nv-hoang (9 commits)")[![FulGod](https://avatars.githubusercontent.com/u/10904052?v=4)](https://github.com/FulGod "FulGod (3 commits)")

### Embed Badge

![Health badge](/badges/innosoft-cms/health.svg)

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

###  Alternatives

[sheadawson/silverstripe-blocks

An alternative to the SilverStripe Widgets module.

5955.6k5](/packages/sheadawson-silverstripe-blocks)[wwwision/neos-modulecomponents

Flow package with utilities and components to create Fusion based backend modules with the common Neos look and feel

107.3k1](/packages/wwwision-neos-modulecomponents)

PHPackages © 2026

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