0.5.24
- #615 Simplify the console invocation format, by @mnapoli (layers have been updated)
- #627, #634, #635 Loads of improvements to the Laravel documentation (https://bref.sh/docs/frameworks/laravel.html), by @mnapoli
- #623 Revise Lambda/Request context within PHP-FPM handler, by @eddmann
- #626 Expose Lambda invocation context within console runtime, by @eddmann
- Fix #629, #637 Remove the timeout in
vendor/bin/bref cli
, by @mnapoli
#615 New console invocation format: perfect for cron jobs
The console
runtime now takes a simple string as the "event". That makes cron much easier to define, for example:
events:
- schedule:
rate: rate(1 minute)
input: 'doctrine:migrate --force'
Note that backward compatibility is kept with the old input
array format.