pikart / laravel-hooks
Simple hooks system for laravel
Requires
- php: >=7.2
- laravel/framework: >=5.7
Requires (Dev)
- orchestra/testbench: ~3.7
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2025-03-14 20:03:09 UTC
README
Requirements:
php >= 7.2
laravel >= 5.7
Require this package with composer.
composer require pikart/laravel-hooks
This package will automatically register service provider and alias using laravel auto discovery functionality.
Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="Pikart\LaravelHooks\HookServiceProvider"
Usage
Registering hooks
Register method takes three parameters:
-
contract (string) required
custom string or existing interface name -
hook (string|Closure|Pikart\LaravelHook\Contracts\Hook) required
If contract is an existing interface, hook must be existing class name or class instance.
The registered class must implement two interfaces. The interface to which it relates and
the hooks interface (Pikart\LaravelHook\Contracts\Hook).If hook is an existing class name, class will be resolved using laravel service container,
so its may use auto instance injection in constructor. -
priority (int) default 0
Ordering execution of registered hooks, bigger will be execute first.
Register closure
HookManager::register('hook_name', function( array $args ) { return 'Hello world'; }, 10);
Register class
HookManager::register('hook_name', SomeHookClass::class, 10);
Register instance
HookManager::register('hook_name', new SomeHookClass::class, 10);
Register interface to implementation
HookManager::register(SomeHookInterface::class, SomeHookClass::class, 10);
Executing
Hooks are executing by hook method. Hook method takes two parameters:
- Hook name (string) required
custom string or existing interface name - Arguments (array)
- Method (string)
Arguments are passed for execution and in the case of an existing class name to
create its instance using the laravel service container
Execute hook by custom name
$output = HookManager::hook('hook_name');
Execute hook by custom name with arguments
$user = User::find(1); $output = HookManager::hook('hook_name', [ 'user' => $user]);
Execute hook by interface
$output = HookManager::hook(SomeHookInterface::class);
Execute hook by interface name with arguments
$user = User::find(1); $output = HookManager::hook(SomeHookInterface::class, [ 'user' => $user]);
Execute hook by interface name with arguments and custom method
$user = User::find(1); $output = HookManager::hook(SomeHookInterface::class, [ 'user' => $user], 'someMethod');
Gets hooks to be executed
Get method takes three parameters:
- Hook name (string) required custom string or existing interface name
- Argumesnts (array)
The get method works the same as the hook method, however, the hooks are not executed, array is returned.
Get prepared hooks
$hooks = HookManager::get(SomeHookInterface::class);
Get prepared hooks with arguments
$hooks = HookManager::get(SomeHookInterface::class, [ 'user' => $user ]);
Gets raw hooks
$hooks = HookManager::getRaw(SomeHookInterface::class);
Tests
vendor/bin/phpunit --testdox