blok/shortcode

A shortcode helper (like in wordpress) for Laravel project

1.0.1 2020-09-21 16:49 UTC

This package is not auto-updated.

Last update: 2024-03-21 02:55:16 UTC


README

Build Status styleci Scrutinizer Code Quality SensioLabsInsight Coverage Status

Packagist Packagist Packagist

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.