tobento / helper-function
This package is abandoned and no longer maintained.
The author suggests using the tobento/service-helper-function package instead.
Support for helper functions management.
1.0.4
2023-11-24 08:58 UTC
Requires
- php: >=8.0
- psr/container: ^1.0 || ^2.0
Requires (Dev)
- phpunit/phpunit: ^9.5
- vimeo/psalm: ^4.0
README
With the HelperFunction Service you can easily manage your helper functions.
Table of Contents
Getting started
Add the latest version of the HelperFunction service running this command.
composer require tobento/service-helper-function
Requirements
- PHP 8.0 or greater
Highlights
- Framework-agnostic, will work with any project
Example
Here is a example of how to use the HelperFunction service.
// Create Functions. $functions = new Functions(); // Set any data for later usage for your functions. $functions->set('sitename', 'Your Sitename'); // Register a function file. $functions->register(__DIR__.'/functions.php'); // Calling the function registered. var_dump(sitename()); // string(13) "Your Sitename" // Get the key set. $keys = $functions->getKeys(); // ['sitename']
functions.php file example.
use Tobento\Service\HelperFunction\Functions; if (!function_exists('sitename')) { function sitename(): string { // Get the data from the Functions. return Functions::get('sitename'); } }