torfs-ict / cmsms
CMS Made Simple
Installs: 134
Dependents: 6
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
pkg:composer/torfs-ict/cmsms
Requires
Requires (Dev)
- composer/semver: ^1.4
This package is auto-updated.
Last update: 2025-10-21 22:24:18 UTC
README
This packages enables you to use Composer and Bower packages for the development and deployment of CMS Made Simple websites and modules.
It also provides a Vagrant box for easy setup of a development environment.
Setting up a development environment
- Create a composer project:
composer create-project torfs-ict/cmsms <path>. - Run
vagrant upin the created project. - Browse to http://192.168.33.99/install and follow the CMSMS installation procedure.
- Include the Composer autoloader in the CMSMS
config.phpfile:
require_once(__DIR__ . '/vendor/autoload.php');
Trivia
- The MySQL root password, username, user password and database name are all
cmsms. - PHPMyAdmin gets installed in the Vagrant box and is accessible at http://192.168.33.99/phpmyadmin.
- Running Composer in the development environment must ALWAYS be done in the Vagrant box.
Developing modules
All modules (in development) should be put in the modules directory of the development environment and have a valid
composer.json file as you can see below in the example taken from the Google Maps module.
{
"name": "torfs-ict/cmsms-google-maps",
"description": "Google Maps module for CMS Made Simple",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Kristof Torfs",
"email": "kristof@torfs.org"
}
],
"require": {
"torfs-ict/cmsms": "^2.1"
},
"extra": {
"cmsms": {
"module": true,
"name": "GoogleMaps",
"bower": {
"gmaps": "~0.4.22",
"hint.css": "^2.3.2"
}
}
}
}
Composer.json requirements
- The version must be set.
- At least one author must be set.
- The
extra/cmsmssection must be defined.- The
modulefield must be set to TRUE, so our dev environment knows it should treat it as a module when installing. - The
namefield must be set to the actual module name. - The
bowerfield contains the Bower package requirements (optional). These will automatically be installed when installing/updating the composer package of your module.
- The
Generating a new module
- Create the module directory and change to that directory.
- Run
php ../../src/Module.php
Install module in the development environment
- Make sure your module directory is a Git repository.
- Add the VCS to the repositories in the development environment composer.json e.g.
"repositories": [{ "type": "path", "url": "modules/GoogleMaps" }]
- Add the module as a requirement in composer.json e.g.
"requires": { "torfs-ict/cmsms-google-maps": "*" }
- Run
composer updatein the root of the development environment.
Note: if you generated the module with our script, you can skip steps 1 & 2.
Deploying a completed project
- Use the Composer
create-projectcommand as when setting up the development environment. - Make sure the webroot of your virtual host points to the
cmsdirectory. - Navigate your browser to the install directory and complete the CMS Made Simple installation.
- Include the Composer autoloader in the CMSMS
config.phpfile:require_once(__DIR__ . '/vendor/autoload.php'); - Remove the install directory.
- Run
composer requirefor each module you need.