askupa-software / amarkal-core
The core module of the Amarkal framework.
Installs: 110
Dependents: 4
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Type:wordpress
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-03-02 04:34:15 UTC
README
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';