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
Requires
- php: >=5.4.0
- google/recaptcha: ^1.1
- illuminate/support: ~5.1
- laravel/framework: 5.2.*
- laravelcollective/html: ^5.2
- pusher/pusher-php-server: ^2.2
Requires (Dev)
- barryvdh/laravel-ide-helper: ^2.1
- jeroen-g/laravel-packager: ^1.3
- phpunit/phpunit: 4.*
- scrutinizer/ocular: ~1.1
- squizlabs/php_codesniffer: ~2.3
README
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.