stackonet / wp-helpers
A WordPress framework for easy development.
This package's canonical repository appears to be gone and the package has been frozen as a result.
1.14.3
2024-03-08 05:51 UTC
Requires
- php: ^7.2 || ^8.0
- ext-fileinfo: *
- ext-imagick: *
- ext-json: *
- ext-mbstring: *
Requires (Dev)
README
A WordPress utility framework for easy development.
Table of contents
Installation
You can install the utility framework as a composer dependency package, or you can directly include in you project.
Manual Installation
Download the package from GitHub and include inside your project. Now load the autoloader file.
include '{{PATH_TO_FOLDER}}/wp-helpers/src/autoload.php';
Installation using composer
To install as a composer package, run the following command in terminal.
composer require stackonet/wp-helpers
Include vendor autoload file and change {{PATH_TO_VENDOR}} with you actual path to vendor directory.
include '{{PATH_TO_VENDOR}}/autoload.php';