Development framework for WordPress.
Amarkal is a WordPress development framework that is aimed at simplifying the creation and maintenance of WordPress plugins and themes., (*2)
This framework is currently in it's alpha stage and is not ready for production. This means that drastic changes can occur without prior notice. However, some parts of the framework have been fully matured and no major changes are expected for them., (*3)
Clone the Amarkal Git repository to the desired location:, (*4)
git clone git://github.com/amarkal/amarkal.git target-directory
(Where target-directory
is your desired folder path.), (*5)
Create a file named composer.json at the root of your project, containing the Amarkal dependency:, (*6)
{ "require": { "askupa-software/amarkal-framework": "dev-master" } }
Install composer in your project:, (*7)
curl -s http://getcomposer.org/installer | php
Install dependencies, (*8)
php composer.phar install
Updating can be done by manually downloading the newer version, or by simply using git pull
or php composer.phar update
. The composer version of Amarkal is linked to the GitHub repository, so any updates to the framework will be reflected on both simultaneously., (*9)