Skip to content

amarkal/amarkal-core

Repository files navigation

amarkal-core Build Status Scrutinizer Code Quality Built with Grunt Amarkal Powered License

The core module of the Amarkal framework.

Tested up to: WordPress 4.7
Dependencies: none

overview

This module is used internally by other Amarkal modules. It contains has classes and functions that other modules commonly use.

Installation

Via Composer

If you are using the command line:

$ composer require askupa-software/amarkal-core:dev-master

Or simply add the following to your composer.json file:

"require": {
     "askupa-software/amarkal-core": "dev-master"
 }

And run the command

$ composer install

This will install the package in the directory vendors/askupa-software/amarkal-core.
Now all you need to do is include the composer autoloader.

require_once 'path/to/vendor/autoload.php';

Manually

Download the package from github and include bootstrap.php in your project.

require_once 'path/to/amarkal-core/bootstrap.php';