delboy1978uk/bone-gentest

BoneMvcFramework test converting a module to composer package

v1.0.0 2019-09-15 20:26 UTC

This package is auto-updated.

Last update: 2024-03-16 06:52:48 UTC


README

Test converting a standard Bone Mvc Framework entity module into a composer package

installation

Use composer to install

composer require delboy1978uk/bone-gentest

usage

Simply add the Package to Bone's module config

<?php

// use statements here
use Random\Developer\Awesome\AwesomePackage;

return [
    'packages' => [
        // packages here...,
        AwesomePackage::class,
    ],
    // ...
];