https://github.com/amarkal/amarkal-core
The core module of the Amarkal framework
https://github.com/amarkal/amarkal-core
amarkal wordpress wordpress-framework
Last synced: 4 months ago
JSON representation
The core module of the Amarkal framework
- Host: GitHub
- URL: https://github.com/amarkal/amarkal-core
- Owner: amarkal
- License: gpl-3.0
- Created: 2017-05-19T13:30:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-24T22:05:33.000Z (over 8 years ago)
- Last Synced: 2025-09-27T07:35:25.414Z (9 months ago)
- Topics: amarkal, wordpress, wordpress-framework
- Language: JavaScript
- Size: 20.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# amarkal-core [](https://scrutinizer-ci.com/g/amarkal/amarkal-core/build-status/master) [](https://scrutinizer-ci.com/g/amarkal/amarkal-core/?branch=master) [](https://gruntjs.com/) [](https://products.askupasoftware.com/amarkal) [](https://raw.githubusercontent.com/amarkal/amarkal-core/master/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:
```javascript
"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.
```php
require_once 'path/to/vendor/autoload.php';
```
### Manually
[Download the package](https://github.com/amarkal/amarkal-core/archive/master.zip) from github and include `bootstrap.php` in your project.
```php
require_once 'path/to/amarkal-core/bootstrap.php';
```