grzegorz-jamroz / wp-extensions
There is no license information available for the latest version (v1.0.1) of this package.
Library used in Rockujemy themes and plugins.
v1.0.1
2024-03-10 09:18 UTC
Requires
- php: >=7.4
- ext-json: *
- grzegorz-jamroz/foundations: ^0.0.3
- grzegorz-jamroz/plain-data-transformer: ^0.0.2
- symfony/validator: ^5.0
README
Library used in Rockujemy themes and plugins.
Installation
Open console in your WordPress theme folder or plugin folder:
cd wordpress\wp-content\themes\your-theme
or
cd wordpress\wp-content\plugins\your-plugin
Run Composer to install this package in your project:
composer require grzegorz-jamroz/wp-extensions
Remember to require vendor/autoload.php
file in your code to enable the class autoloading mechanism provided by Composer.
You can do it for example in the beginning of:
wordpress/wp-content/themes/your-theme/functions.php
require_once __DIR__ . '/vendor/autoload.php';