Bolt Extension Versioning ====================== This extension add creation of Versions for a content type. **Instalation:** In the file extensions/composer.json add the following: ~~~ "repositories": { "cnd/versioning": { "type": "vcs", "url": "https://github.com/CondeNastDigital/cnBolt-Extensions-Versioning" } }, "require": { "cnd/versioning": "dev-master", }, ~~~ **Configuration:** The configuration is typically found at app/config/extensions/versioning.cnd.yml ~~~ storage: # The storage class - Database class: Bolt\\Extension\\CND\\Versioning\\Store\\StoreDB options: # How many versions should be kept maxVersions: 10 ~~~