Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine/standard/laravel-framework/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require-dev": {
"monolog\/monolog": "^2.0",
"google/cloud-logging": "^1.14"
"google/cloud-logging": "^2.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The google/cloud-logging package is used by the application's logging configuration (CreateStackdriverLogger.php) and should be listed in the require section rather than require-dev. If the application is deployed with --no-dev, the logging functionality will fail because the package will be missing. Additionally, note that google/cloud-logging v2.0.0 requires PHP 7.4 or higher, which may impact compatibility with older App Engine runtimes.

}
}
Loading