Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Target Laravel 5.8 * Update composer.json * Update `RegisterController` password validation rule and associated lang file * Update UserFactory password in line with #4794 The new password is of 8 characters, as required by #4794 * Update VerificationController.php * add dynamo to stubs * tweak wording * Modify RedirectIfAuthenticated middleware to accept multiple guards * add env variable for mysql ssl cert * Add beanstalk queue block_for config key This functionality was added in laravel/framework 9aa1706. * Hint for lenient log stacks * adjust name of configuration value * Use same version as framework * Use $_SERVER instead of $_ENV for phpunit. Laravel 5.8 limits dotenv to only rely on $_SERVER and not $_ENV. See laravel/framework#27462 * change default redis configuration structure * update client * update config file * [5.8] use bigIncrements by default All new migrations will be using bigIncrements laravel/framework#26472 * Revert "[5.8] Modify RedirectIfAuthenticated middleware to accept multiple guards" * revert to old redis config * add postmark token * Add Arr and Str aliases by default * add postmark * update env variable stubs * set default region * add bucket to env example * Use correct env name for AWS region from env.example * comment * comment out options * check if extension loaded * Ignore SQLite journals * Prefix redis database connection by default to mitigate multiple sites on the same server potentially sharing the same queued jobs * Use Str class instead of helper function * Additional underscore on redis database prefix * Additional underscore on cache prefix * Remove underscore as cache prefixes automatically have a colon appended to them * Update UserFactory.php * Fix phpdoc to order by syntax convention (#5005) Reorder the `@var` phpdoc syntax by convention, see http://docs.phpdoc.org/references/phpdoc/tags/var.html * Update database config relating to Url addition. * formatting * Add ends_with validation message * Fix type hint for case of trusting all proxies (string) (#5025) * Add DYNAMODB_ENDPOINT to the cache config (#5034) This adds the DYNAMODB_ENDPOINT environment variable to the dynamodb store of the cache cofig. Its usage is implemented in the framework as laravel/framework#28600 * Added support for new redis URL property in config/database.php (#5037) Regarding laravel/framework#28612 * use generic default db config * Update .gitignore (#5046) * Move TrustProxies to highest priority - fixes maintenance mode ip whitelist if behind proxy e.g. Cloudflare (#5055) * update deprecated pusher option (#5058) * Using environment variable to set redis prefix (#5062) It was the only redis setting that wasn't overridable by an environment variable. It can help if you have multiple instances using the same `APP_NAME`, e.g. a staging instance * Remove Stripe config settings These now ship with a dedicated config file for Cashier. * formatting * Update composer.lock * Revert "[5.8] use bigIncrements by default" This reverts commit 6c5798e. * Update laravel/telescope
- Loading branch information