Download the PHP package graham-campbell/cms-core without Composer
On this page you can find all versions of the php package graham-campbell/cms-core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download graham-campbell/cms-core
More information about graham-campbell/cms-core
Files in graham-campbell/cms-core
Package cms-core
Short Description CMS Core Provides Some Core Functionality For Applications Like Bootstrap CMS
License AGPL-3.0
Informations about the package cms-core
CMS Core
WARNING
This package has been re-merged with Bootstrap CMS, and is no longer maintained.
What Is CMS Core?
CMS Core provides some core functionality for applications like Bootstrap CMS.
- CMS Core was created by, and is maintained by Graham Campbell.
- CMS Core relies on many of my packages including Laravel Core and Laravel Queuing.
- CMS Core uses Travis CI with Coveralls to check everything is working.
- CMS Core uses Scrutinizer CI and SensioLabsInsight to run additional checks.
- CMS Core uses Composer to load and manage dependencies.
- CMS Core provides a change log, releases, and api docs.
- CMS Core is licensed under the GNU AGPLv3, available here.
System Requirements
- PHP 5.4.7+ or PHP 5.5+ is required.
- You will need Laravel 4.1 because this package is designed for it.
- You will need Composer installed to load the dependencies of CMS Core.
Installation
Please check the system requirements before installing CMS Core.
To get the latest version of CMS Core, simply require "graham-campbell/cms-core": "0.2.*@alpha"
in your composer.json
file. You'll then need to run composer install
or composer update
to download it and have the autoloader updated.
You will need to register many service providers before you attempt to load the CMS Core service provider. Open up app/config/app.php
and add the following to the providers
key.
'Lightgear\Asset\AssetServiceProvider'
'Cartalyst\Sentry\SentryServiceProvider'
'GrahamCampbell\Core\CoreServiceProvider'
'GrahamCampbell\Viewer\ViewerServiceProvider'
'GrahamCampbell\Queuing\QueuingServiceProvider'
'GrahamCampbell\HTMLMin\HTMLMinServiceProvider'
'GrahamCampbell\Markdown\MarkdownServiceProvider'
'GrahamCampbell\Security\SecurityServiceProvider'
'GrahamCampbell\Binput\BinputServiceProvider'
'GrahamCampbell\Passwd\PasswdServiceProvider'
'GrahamCampbell\Throttle\ThrottleServiceProvider'
'GrahamCampbell\Credentials\CredentialsServiceProvider'
'GrahamCampbell\Navigation\NavigationServiceProvider'
Once CMS Core is installed, you need to register the service provider. Open up app/config/app.php
and add the following to the providers
key.
'GrahamCampbell\CMSCore\CMSCoreServiceProvider'
Configuration
CMS Core supports optional configuration.
To get started, first publish the package config file:
php artisan config:publish graham-campbell/cms-core
There are a few config options:
Comment Model
This option ('comment'
) defines the comment model to be used. The default value for this setting is 'GrahamCampbell\CMSCore\Models\Comment'
.
Event Model
This option ('event'
) defines the event model to be used. The default value for this setting is 'GrahamCampbell\CMSCore\Models\Event'
.
Page Model
This option ('page'
) defines the page model to be used. The default value for this setting is 'GrahamCampbell\CMSCore\Models\Page'
.
Post Model
This option ('post'
) defines the post model to be used. The default value for this setting is 'GrahamCampbell\CMSCore\Models\Post'
.
Usage
There is currently no usage documentation besides the API Documentation for CMS Core.
You may see an example of implementation in Bootstrap CMS. CMS CloudFlare, CMS Contact, and CMS LogViewer are all examples of plugins for the CMS.
Updating Your Fork
Before submitting a pull request, you should ensure that your fork is up to date.
You may fork CMS Core:
git remote add upstream git://github.com/GrahamCampbell/CMS-Core.git
The first command is only necessary the first time. If you have issues merging, you will need to get a merge tool such as P4Merge.
You can then update the branch:
git pull --rebase upstream master
git push --force origin <branch_name>
Once it is set up, run git mergetool
. Once all conflicts are fixed, run git rebase --continue
, and git push --force origin <branch_name>
.
Pull Requests
Please review these guidelines before submitting any pull requests.
- When submitting bug fixes, check if a maintenance branch exists for an older series, then pull against that older branch if the bug is present in it.
- Before sending a pull request for a new feature, you should first create an issue with [Proposal] in the title.
- Please follow the PSR-2 Coding Style and PHP-FIG Naming Conventions.
License
GNU AFFERO GENERAL PUBLIC LICENSE
CMS Core Provides Some Core Functionality For Applications Like Bootstrap CMS Copyright (C) 2013-2014 Graham Campbell
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.
All versions of cms-core with dependencies
laravel/framework Version 4.1.*
symfony/config Version 2.4.*
symfony/filesystem Version 2.4.*
lightgear/asset Version 1.3
graham-campbell/core Version 0.2.*
graham-campbell/viewer Version 0.1.*
graham-campbell/queuing Version 0.2.*
graham-campbell/htmlmin Version 1.0.*
graham-campbell/markdown Version 1.0.*
graham-campbell/binput Version 1.0.*
graham-campbell/throttle Version 0.1.*
graham-campbell/credentials Version 0.1.*
graham-campbell/navigation Version 0.2.*