Contentify CMS
Contentify is an eSports CMS based on the popular Laravel 5.1 framework. Build your team website with a modern CMS.
Website: contentify.org
Clone Repository
Clone this repository (master
branch) via git. Via console, switch to the Contentify directory and run php composer.phar install
. Then follow the instructions in the wiki.
Download
Download it here: contentify.org/share/releases/contentify_1_1_0.zip
To install Contentify please follow the instructions in the wiki.
Demo
- URL: demo.contentify.org
- Email:
demo@contentify.org
- Password:
demodemo
The server resets (database, uploaded files and cache) twice per hour.
You may download the demo website project here: contentify.org/share/contentify_demo.zip
Contribution
Create an issue right here on Github whenever you spot a bug. If you have a solution that fixes the bug, create a fork, commit your changes and then create a pull request.
PHP Coding style
Contentify follows the PSR-2 Coding Style Guide with these exceptions:
- All PHP files MUST NOT end with a single blank line.
- There CAN be one
use
keyword per declaration. (But we often merge declarations, e. g.use Crypt, URL, HTML, DB;
) - The last case segment of a
switch
structure CAN have abreak
keyword. (But usually we omit it.) - Closures MUST NOT be declared with a space after the
function
keyword.