View on GitHub

JuKuCMS

Open Source CMS should be the fastest CMS world wide (WIP).

Plugins

RocketCMS also supports plugins.\ You can find all plugins in directory “/plugins/”.

Plugin Types

Like composer this CMS supports multiple plugin types:

Plugin Rules

Version Numbers

In order to compare version numbers, we have a strict version format, as wikipedia describes:\ major.minor.revision[-alpha|-beta]

Examples:

Warning: suffixes “-beta” and “-alpha” dont have an effect on version check!\ They are only decorative kind!

plugin.json

{
    "name": "example-plugin",
    "type": "library",
    "title": "Example Plugin",
    "description": "An example plugin to show plugin structure.",
    "version": "1.0.0",
    "keywords": [
        "example", "example-plugin", "plugin"
    ],
    "categories": [
        "example"
    ],
    "homepage": "http://jukusoft.com",
    "license": "Apache 2.0",
    "authors": [
        {
            "name": "Justin Kuenzel",
            "email": "info@jukusoft.com",
            "homepage": "http://jukusoft.com",
            "role": "Project Founder & Lead Developer"
        }
    ],
    "support": {
        "email": "info@jukusoft.com",
        "source": "https://github.com/JuKu/JuKuCMS",
        "issues": "https://github.com/JuKu/JuKuCMS/issues"
    },
    "require": {
        "php": ">=7.0.8"
    }
}