PHPackages                             actcmsvn/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. actcmsvn/cms

ActiveLibrary

actcmsvn/cms
============

The ACTCMS

1.0.0(3y ago)05[1 PRs](https://github.com/actcmsvn/cms/pulls)MITCSS

Since Dec 13Pushed 2y ago1 watchersCompare

[ Source](https://github.com/actcmsvn/cms)[ Packagist](https://packagist.org/packages/actcmsvn/cms)[ RSS](/packages/actcmsvn-cms/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (3)Used By (0)

cms
===

[](#cms)

[![Total Downloads](https://camo.githubusercontent.com/fd2a260df063169efab0cb36b1958155e58f41a5c039af241a9b36897bc9994f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616374636d73766e2f636d73)](https://packagist.org/packages/actcmsvn/cms)[![Latest Stable Version](https://camo.githubusercontent.com/ef8421f2ee0b1858a72ef3e82275d35ae687bbf27b50712a82a45edc1adaadc2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616374636d73766e2f636d73)](https://packagist.org/packages/actcmsvn/cms)[![License](https://camo.githubusercontent.com/fba3b9608eda8d2cfc4330696adc671772190a10956a98a662e4dd548fffee87/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f616374636d73766e2f636d73)](https://packagist.org/packages/actcmsvn/cms)

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

[](#installation)

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

```
"act/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/",
          "ACT\\CMS\\": "vendor/act/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' => [
    // ...

    /*
     * ACT Application Providers
     */
    ACT\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/",
          "ACT\\CMS\\": "vendor/act/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?}', "\ACT\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\act\cms\src\db\install.sql`.

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

[](#configuration)

*(To be continued)*

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

2

Last Release

1252d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/62e2d2f7913a87c4a1dba4c9f82c6332b4cf05602b88515c23c2406be77cdf57?d=identicon)[actcmsvn](/maintainers/actcmsvn)

---

Top Contributors

[![actcmsvn](https://avatars.githubusercontent.com/u/69153463?v=4)](https://github.com/actcmsvn "actcmsvn (2 commits)")

### Embed Badge

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

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

PHPackages © 2026

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