PHPackages                             caffeinated/plugins - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. caffeinated/plugins

AbandonedArchivedLibrary[Framework](/categories/framework)

caffeinated/plugins
===================

Laravel 5 Plugins

v2.2(9y ago)258542MITPHPPHP &gt;=5.5.9

Since Jun 12Pushed 6y agoCompare

[ Source](https://github.com/caffeinated/plugins)[ Packagist](https://packagist.org/packages/caffeinated/plugins)[ RSS](/packages/caffeinated-plugins/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (6)Used By (0)

This package has been abandoned and is no longer maintained.
============================================================

[](#this-package-has-been-abandoned-and-is-no-longer-maintained)

Caffeinated Plugins
===================

[](#caffeinated-plugins)

[![Laravel 5.1](https://camo.githubusercontent.com/05076f1468adbd2ff88c746e1d499486fe3755747a047b2f42949a583c4884b2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d352e312d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](http://laravel.com)[![Laravel 5.2](https://camo.githubusercontent.com/3c5fafdd636fa4b58339ff9c390671fac70d00e2654590261153d96a4de251db/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d352e322d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](http://laravel.com)[![Source](https://camo.githubusercontent.com/b2a59cfbf61aaaa4704a180f2d7eb54a1258baeeca6fe0cdbe66e6dfb4c0122a/687474703a2f2f696d672e736869656c64732e696f2f62616467652f736f757263652d6361666665696e617465642f706c7567696e732d626c75652e7376673f7374796c653d666c61742d737175617265)](https://github.com/caffeinated/plugins)[![License](https://camo.githubusercontent.com/30597ff9a350144f03bffdd9183e16468e0b3ca1193e1d08591d992622738d55/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://tldrlegal.com/license/mit-license)

Abstraction layer between Blade/Twig to allow the means to "plug in" data through a consistent interface.

Quick Installation
------------------

[](#quick-installation)

Begin by installing the package through Composer.

```
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:

#### Service Provider

[](#service-provider)

```
Caffeinated\Plugins\PluginsServiceProvider::class,
```

#### Facade

[](#facade)

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

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

Quick Usage
-----------

[](#quick-usage)

Build your plugin: **app\\Plugins\\YourPlugin.php**

```
