2017 © Pedro Peláez
 

library plugins

Laravel 5 Plugins

image

caffeinated/plugins

Laravel 5 Plugins

  • Wednesday, August 3, 2016
  • by kai_desu
  • Repository
  • 2 Watchers
  • 23 Stars
  • 836 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 3 Open issues
  • 6 Versions
  • 1 % Grown

The README.md

This package has been abandoned and is no longer maintained.

Caffeinated Plugins

Laravel 5.1 Laravel 5.2 Source License, (*1)

Abstraction layer between Blade/Twig to allow the means to "plug in" data through a consistent interface., (*2)

Quick Installation

Begin by installing the package through Composer., (*3)

composer require caffeinated/plugins=~2.0

Once this operation is complete, simply add both the service provider and facade classes to your project's config/app.php file:, (*4)

Service Provider

Caffeinated\Plugins\PluginsServiceProvider::class,

Facade

'Plugin' => Caffeinated\Plugins\Facades\Plugin::class,

And that's it! With your coffee in reach, start plugging in some data!, (*5)

Quick Usage

Build your plugin: app\Plugins\YourPlugin.php, (*6)

<?php
namespace App\Plugins;

class YourPlugin
{
    public function run()
    {
        return 'Whatever you want';
    }
}

Register your plugin, ideally within a service provider:, (*7)

Plugin::register('plugin_name', 'App\Plugins\YourPlugin');

Now simply use it!, (*8)

{{ @plugin_name() }}  // Echo's "whatever you want" in this case

The Versions

03/08 2016

dev-master

9999999-dev

Laravel 5 Plugins

  Sources   Download

MIT

The Requires

 

by Shea Lewis

plugin laravel plugins caffeinated

03/08 2016

v2.2

2.2.0.0

Laravel 5 Plugins

  Sources   Download

MIT

The Requires

 

by Shea Lewis

plugin laravel plugins caffeinated

26/02 2016

v2.1

2.1.0.0

Laravel 5 Plugins

  Sources   Download

MIT

The Requires

 

by Shea Lewis

plugin laravel plugins caffeinated

26/02 2016

v2.1.1

2.1.1.0

Laravel 5 Plugins

  Sources   Download

MIT

The Requires

 

by Shea Lewis

plugin laravel plugins caffeinated

27/06 2015

v2.0

2.0.0.0

Laravel 5 Plugins

  Sources   Download

MIT

The Requires

 

by Shea Lewis

plugin laravel plugins caffeinated

13/06 2015

v1.0.2

1.0.2.0

Laravel 5 Plugins

  Sources   Download

MIT

The Requires

 

by Shea Lewis

plugin laravel plugins caffeinated