blok / shortcode
A shortcode helper (like in wordpress) for Laravel project
1.0.1
2020-09-21 16:49 UTC
Requires
- php: >=7.0
- illuminate/support: >=5.6
Requires (Dev)
- orchestra/testbench: >=3.6.0
- phpunit/phpunit: >=7.0
This package is not auto-updated.
Last update: 2024-11-14 06:12:13 UTC
README
Package description: CHANGE ME
Installation
Install via composer
composer require blok/shortcode
Register Service Provider
Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.
Add service provider to config/app.php
in providers
section
Blok\Shortcode\ServiceProvider::class,
Register Facade
Register package facade in config/app.php
in aliases
section
Blok\Shortcode\Facades\Shortcode::class,
Publish Configuration File
php artisan vendor:publish --provider="Blok\Shortcode\ServiceProvider" --tag="config"
Usage
How to register a shortcode ?
Security
If you discover any security related issues, please email instead of using the issue tracker.
Credits
This package is bootstrapped with the help of blok/laravel-package-generator.