petrelli/live-statics-addons

Addons to extend petrelli/live-statics with new functionalities

v0.0.2-alpha 2019-02-20 21:35 UTC

This package is not auto-updated.

Last update: 2025-03-29 11:39:07 UTC


README

Live-Statics is an open source Laravel package that will help you quickly build prototypes and static pages facilitating data injection into real views. Because all mocked objects will behave as the real ones you won't have to spend any time with integration tasks.

This package provides new Classes, Traits, Faker providers and Modules for you to use.

Install

  1. Include the package

You can run the command:

composer require petrelli/live-statics-addons

Or directly add it to your composer.json

"petrelli/live-statics-addons": "^0.0.1@alpha"

And run composer update.

  1. Publish configuration files and the Service Provider
php artisan vendor:publish --provider="Petrelli\LiveStaticsAddons\BaseServiceProvider"

Usage

Classes

use \Petrelli\LiveStaticsAddons\BaseMock;

class BookMock extends BaseMock implements BookInterface
{
    #...
}

Traits

Let's include the HasImages to emulate images from Twill as an example.

use \Petrelli\LiveStatics\BaseMock;
use \Petrelli\LiveStaticsAddons\Traits\Twill\HasImages;

class BookMock extends BaseMock implements BookInterface
{
    use HasImages;

    #...
}

TODO

Documentation:

  • Interface Mapper
  • Twill Blocks
  • Twill Images

License

The MIT License (MIT). Please see License File for more information.