jlourenco/support

Package to support every jlourenco package. This adds some helper functions which do not require any other jlourenco package.

v0.1.5 2016-05-03 08:02 UTC

This package is auto-updated.

Last update: 2024-04-27 04:13:21 UTC


README

Latest Stable Version Latest Unstable Version Software License Build Status Quality Score Total Downloads

This package is the support for every jlourenco package. It does not depend on any other jlourenco package and it adds a few helper functions.

Install

Via Composer

$ composer require jlourenco/support
$ php artisan jlourenco:setup

Usage

Schema::create('TestingTable', function (Blueprint $table) {
    $table->increments('id');
    $table->string('name', 25);
    $table->string('description', 150)->nullable();
    $table->timestamps();
    $table->creation();
});

Schema::table('TestingTable', function (Blueprint $table) {
    $table->creationRelation();
});

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email jglourenco.pt@gmail.com instead of using the issue tracker.

Credits

License

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