r3oath/hive

This package is abandoned and no longer maintained. The author suggests using the enzyme/axiom package instead.

Hexagonal architecture framework for Laravel 5.1

Installs: 85

Dependents: 0

Suggesters: 0

Security: 0

Stars: 11

Watchers: 1

Forks: 3

Open Issues: 0

Type:framework

v2.1.0 2015-11-14 10:52 UTC

README

Hive has now been deprecated in favour of the more robust and framework agnostic Enzyme/Axiom package. Axiom is unfortunately not backwards compatible with Hive. But don't worry, it still plays great with Laravel! So if you're just starting out with a new project, try it out! 🎉

Current Build

Build Status Coverage Status Scrutinizer Code Quality PHP version StyleCI License MIT Documentation Status

SensioLabsInsight

Installation

Installation is simple, simply issue the following composer command

composer require r3oath/hive

Example App

Want to have a play around with an example implementation of Hive? Check out the example-app branch.

Docs

Check out the documentation at ReadTheDocs

Quick-fire

Hive comes with its own Service Provider that exposes a few new Artisan commands that make generating concrete implementations faster.

To enable it, simply append the following line to the 'providers' array inside config\app.php.

R\Hive\Providers\HiveServiceProvider::class,

The quickest way to setup a new collection of resources for a model is to fire off the the following command

php artisan hive:assemble X

In the example above, replace X with the name of your model. hive:assemble will create a new model, migration, mutator, validator, repo, factory and controller for Model.

Implementations can also be generated seperately through artisan with the following Hive commands:

  • hive:command
  • hive:controller
  • hive:factory
  • hive:handler
  • hive:instance
  • hive:repo
  • hive:validator
  • hive:mutator

The Hive specific classes will be placed in the app\Lib directory, while the rest will be located in standard Laravel locations.

Example

To play with an example implementation of Hive, check out the example-app branch of this repo.