Coder Social home page Coder Social logo

cms's Introduction

Content Management System

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

This is the Clarity Content Management System (CMS).

Install

Via Composer

$ composer require claritytech/cms

Setup

Add the CmsServiceProvider to your config/app.php file.

'providers' => [
    claritytech\cms\CmsServiceProvider::class,
],

Publishing

You can choose to publish everything at once

php artisan vendor:publish --provider="claritytech\cms\CmsServiceProvider"

or you can publish them individually.

php artisan vendor:publish --provider="claritytech\cms\CmsServiceProvider" --tag="config"
php artisan vendor:publish --provider="claritytech\cms\CmsServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="claritytech\cms\CmsServiceProvider" --tag="views"
php artisan vendor:publish --provider="claritytech\cms\CmsServiceProvider" --tag="public"

Migrations

After package updates, make sure you run the migrations to update your database schema.

php artisan migrate

Updating

To update the package start with composer.

composer update

Then publish and run all new migrations.

php artisan vendor:publish --provider="claritytech\cms\CmsServiceProvider" --tag="migrations"
php artisan migrate

If upgrading a major version, please take note of any breaking changes and address them as need be.

Assumptions

While we try to stay as independent as possible, there are specific assumptions this package makes in order to function correctly and still be useful. Make sure your application meets all of these assumptions.

  • Bootstrap v4 is available.
  • FontAwesome v4.5 is available.
  • A middleware called 'web' is available.
  • A base controller exists that is autoloadable from App\Http\Controllers\Controller. This base controller accepts Illuminate\Http\Request as the first parameter in its constructor.
  • Layout called 'master'.

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

Clarity Technology Group License. Please see License File for more information.

cms's People

Contributors

browner12 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.