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

Abandoned → [gp247/cms](/?search=gp247%2Fcms)Project[Framework](/categories/framework)

vncore/cms
==========

Free CMS source code built with Laravel for your system.

08PHP

Since Dec 25Pushed 1y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

 [![](https://camo.githubusercontent.com/a6a52b4520bd07751c950a4c0cc6d5936ff943840d00af0d27557703a625dd3e/68747470733a2f2f766e636f72652e6e65742f6c6f676f2e706e67)](https://camo.githubusercontent.com/a6a52b4520bd07751c950a4c0cc6d5936ff943840d00af0d27557703a625dd3e/68747470733a2f2f766e636f72652e6e65742f6c6f676f2e706e67)

Free CMS source code built with Laravel for your system
 `composer create-project vncore/cms`

[![Total Downloads](https://camo.githubusercontent.com/0f56933cb82c1e25150b2352ab695fdb664e23c96f083d2de56ef23f8d0b13a0/68747470733a2f2f706f7365722e707567782e6f72672f766e636f72652f636d732f642f746f74616c2e737667)](https://packagist.org/packages/vncore/cms)[![Latest Stable Version](https://camo.githubusercontent.com/993fcd8a05d9522409d5d531d87060091eb98843191a4dca8c1ff70af0e20a25/68747470733a2f2f706f7365722e707567782e6f72672f766e636f72652f636d732f762f737461626c652e737667)](https://packagist.org/packages/vncore/cms)[![License](https://camo.githubusercontent.com/94343bbdd5752d716944df3ce3fe7f41c3985d38ca0c0e1899611ba5ab05b290/68747470733a2f2f706f7365722e707567782e6f72672f766e636f72652f636d732f6c6963656e73652e737667)](https://packagist.org/packages/vncore/cms)

About Vncore CMS
----------------

[](#about-vncore-cms)

- Vncore CMS makes it easy for you to build a website for your business.
- Vncore CMS is a complete system, combining `Vncore/front` and `Vncore/core`.

**What can Vncore CMS do?**

- Fully inherits the power and convenience of `Vncore/core`.
- Plugins will be continuously updated.
- Vncore is FREE

**And more:**

- Vncore builds a large, open ecosystem (plugin, template), helping users quickly build CMS, PMO, eCommerce, etc., according to your needs.

 [![](https://camo.githubusercontent.com/f33fd5daf053b5fbd24be89d7f1ee200539b994534217e555e6f2ca2fe8132c8/68747470733a2f2f766e636f72652e6e65742f696d616765732f766e636f72652d73637265656e2e6a7067)](https://camo.githubusercontent.com/f33fd5daf053b5fbd24be89d7f1ee200539b994534217e555e6f2ca2fe8132c8/68747470733a2f2f766e636f72652e6e65742f696d616765732f766e636f72652d73637265656e2e6a7067)

Laravel core:
-------------

[](#laravel-core)

Vncore 1.x

> Core laravel framework 11.x

Website structure using Vncore
------------------------------

[](#website-structure-using-vncore)

```
Website-folder/
|
├── app
│     └── Vncore
│           ├── Core(+) //Customize controller core
│           ├── Blocks(+)
│           ├── Helpers(+)
│           ├── Templates(+)
│           └── Plugins(+)
├── public
│     └── Vncore
│           ├── Admin(+)
│           ├── Templates(+)
│           └── Plugins(+)
├── resources
│            └── views/vendor
│                           └── vncore-admin(+) //Customize view admin
├── vendor
│     └── vncore/core
├── .env
└──...

```

Support the project
-------------------

[](#support-the-project)

Support this project 😜 🙏

 [![PayPal Me](https://camo.githubusercontent.com/604e3db9c8751116b3f765aad0353ec7ded655bbe8aaacbc38d8c4a6b784b3ed/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f6e6174652d50617950616c2d677265656e2e737667)](https://www.paypal.me/LeLanh)

Quick Installation Guide
------------------------

[](#quick-installation-guide)

**Initialize vncore cms**

Run the command:

> `php artisan vncore:install`

Useful information:
-------------------

[](#useful-information)

**To view Vncore version**

> `php artisan vncore:info`

**Update vncore**

Update the package using the command:

> `composer update vncore/core`

Then, run the command:

> `php artisan vncore:update`

**To create a plugin:**

> `php artisan vncore:make plugin  --name=PluginName`

To create a zip file plugin:

> `php artisan vncore:make plugin  --name=PluginName --download=1`

**To create a template:**

> `php artisan vncore:make template  --name=TemplateName`

To create a zip file template:

> `php artisan vncore:make template  --name=TemplateName --download=1`

Customize
---------

[](#customize)

**Customize vncore-config and functions**

> `php artisan vncore:customize config`

**Customize view admin**

> `php artisan vncore:customize view`

**Overwrite vncore\_* helper functions*\*

> Step 1: Use the command `php artisan vncore:customize config` to copy the file `app/config/vncore_functions_except.php`

> Step 2: Add the list of functions you want to override to `vncore_functions_except.php`

> Step 3: Create a new function in the `app/Vncore/Helpers folder`

**Overwrite vncore controller files**

> Step 1: Copy the controller files you want to override in vendor/vncore/core/src/Admin/Controllers -&gt; app/Vncore/Core/Admin/Controllers

> Step 2: Change `namespace Vncore\Core\Admin\Controllers` to `namespace App\Vncore\Core\Admin\Controllers`

**Overwrite vncore API controller files**

> Step 1: Copy the controller files you want to override in vendor vendor/vncore/core/src/Api/Controllers -&gt; app/Vncore/Core/Api/Controllers

> Step 2: Change `namespace Vncore\Core\Api\Controllers` to `namespace App\Vncore\Core\Api\Controllers`

Add route
---------

[](#add-route)

Use prefix and middleware constants `VNCORE_ADMIN_PREFIX`, `VNCORE_ADMIN_MIDDLEWARE` in route declaration.

References:

Environment variables in .env file
----------------------------------

[](#environment-variables-in-env-file)

**Quickly disable Vncore and plugins**

> `VNCORE_ACTIVE=1` // To disable, set value 0

**Disable APIs**

> `VNCORE_API_MODE=1` // To disable, set value 0

**Data table prefixes**

> `VNCORE_DB_PREFIX=vncore_` //Cannot change after install vncore

**Path prefix to admin**

> `VNCORE_ADMIN_PREFIX=vncore_admin`

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity16

Early-stage or recently created project

 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.

### Community

Maintainers

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

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M532](/packages/laravel-passport)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

712181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)[laravel/pail

Easily delve into your Laravel application's log files directly from the command line.

91545.3M590](/packages/laravel-pail)

PHPackages © 2026

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