-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix composer.json #28
Fix composer.json #28
Conversation
composer.json
Outdated
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^6.0", | ||
"phpunit/phpunit": "^8.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
"phpunit/phpunit": "^6.0|^7.0|^8.0",
composer.json
Outdated
@@ -13,11 +13,11 @@ | |||
"minimum-stability": "stable", | |||
"require": { | |||
"php": ">=7.0.0", | |||
"guzzlehttp/guzzle": "^6.3", | |||
"illuminate/support": "~5.0|~6.0|~7.0" | |||
"guzzlehttp/guzzle": ">=6.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's still better to define this as ^6.3|^7.0
against the specific versions as otherwise it would automatically accept Guzzle 8.0 if it ever is released and could end up breaking this version.
View name should user the package prefix so it can be loaded directly from the package without having to publish into the project itself if the consumer doesn't want to. https://laravel.com/docs/5.0/packages#views
…nstead of returning empty string. Use FlattenException to print all nested stack traces
…::mail' to 'vendor.laravel_alert_notifications.mail', for dynamic email template
In order to use in Laravel8, guzzlehttp/guzzle version should be ^7.0.1.