dev-master
9999999-devLaravel 5 - Interactions, inspired by Laravel/Spark.
MIT
The Requires
by Jonas Kervin Hansen
laravel interaction
Wallogit.com
2017 © Pedro Peláez
Laravel 5 - Interactions, inspired by Laravel/Spark.
Laravel 5 Interactions, make it a breeze to write interactions, for instance subscribing a newly registered User., (*1)
Execute the following command to get the latest version of the package:, (*2)
composer require sasin91/laravel-interaction
Note, to pull this in you might need to set your minimum stability in composer.json ```composer.json "minimum-stability":"dev",, (*3)
### Laravel In your `config/app.php` add `Sasin91\LaravelInteractions\RepositoryServiceProvider::class` to the end of the `Package Service Providers` array: ```php 'providers' => [ ... Sasin91\LaravelInteractions\RepositoryServiceProvider::class, ],
To generate a interaction, run this command:, (*4)
php artisan make:interaction CreateUser {--contract}
generates a contract for the Interaction if the contract option is specified., (*5)
Laravel 5 - Interactions, inspired by Laravel/Spark.
MIT
laravel interaction