xclydes/larva

A library to aid in the quickly developing CRUD functionality within a Larvel 5 applicaiton.

Maintainers

Details

github.com/xclydes/larva

Source

Issues

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/xclydes/larva

v1.0.0 2018-01-12 06:18 UTC

This package is auto-updated.

Last update: 2025-10-10 15:03:03 UTC


README

A ORM to form implementation designed for laravel.

In order to include this package using composer, you will need to do the following:-

  1. Modify you composer.json file to include:-

    "repositories": [
        {
        	"type":"vcs",
            "url": "https://github.com/xclydes/larva"
        }
    ]
    
  2. Add a require (or require-dev) property:

    "xclydes/larva" : "dev-master"

Once complete you can run composer update to have the package imported.

Add a custom provider in the app config

    Xclydes\Larva\LarvaServiceProvider::class,

After import run vendor:publish to have the resources deployed.