KCMS Project based on Laravel framework

Installs: 50

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 0

Open Issues: 7

Language:JavaScript

Type:project

v5.5-stable 2024-10-14 11:44 UTC

This package is auto-updated.

Last update: 2024-10-14 11:45:23 UTC


README

Application based on KCMS framework over Laravel

Installation

This repo contains KCMS core packages in a separate corporation repository bitbucket.ideus.biz.

At first, you have to authorize your composer to access this repo.

composer config --global --editor --auth

and write in your creds:

{
    "http-basic": {
        "bitbucket.ideus.biz": {
            "username": "username",
            "password": "password"
        }
    }
}

More info and auth options is here: https://getcomposer.org/doc/articles/authentication-for-private-packages.md#command-line-http-basic

Create a project using composer tool:

composer create-project ideus-biz/kcms ./my-app

It downloads and installs all required packages.

Open a newly created document root folder of my-app, and run PHP internal server:

cd ./my-app/public php -S localhost:8080

If everything done write you can see a page at http://localhost:8080/

Please read further instruction on the page.

KCM Package update

To be up-to-date you need to update kcms/package either separately or alone with all vendors using composer update command. Before updating, you have to know the latest KCMS package version. One of the way to get the version is to search for the latest tag in the main branch of the corporate repository. The tag looks like v5.5.yyyy.mmdd.n. Copy such a string and fill it into the reference under kcms/package in the project's composer.json.

Then run either composer update kcms/package or composer update.