sasin91 / laravel-interaction
Laravel 5 - Interactions, inspired by Laravel/Spark.
dev-master
2017-01-14 12:54 UTC
Requires
- illuminate/console: ~5.0
- illuminate/filesystem: ~5.0
- illuminate/support: ~5.0
This package is auto-updated.
Last update: 2024-11-12 03:49:13 UTC
README
Laravel 5 Interactions, make it a breeze to write interactions, for instance subscribing a newly registered User.
Installation
Composer
Execute the following command to get the latest version of the package:
composer require sasin91/laravel-interaction
Note, to pull this in you might need to set your minimum stability in composer.json
"minimum-stability":"dev",
Laravel
In your config/app.php
add Sasin91\LaravelInteractions\RepositoryServiceProvider::class
to the end of the Package Service Providers
array:
'providers' => [ ... Sasin91\LaravelInteractions\RepositoryServiceProvider::class, ],
Commands
To generate a interaction, run this command:
php artisan make:interaction CreateUser {--contract}
generates a contract for the Interaction if the contract option is specified.