Skip to content

Commit

Permalink
fix: move sysv from required to suggest to allow app engine to run
Browse files Browse the repository at this point in the history
  • Loading branch information
taka-oyama committed Nov 5, 2021
1 parent b57089c commit 4186fb8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
"php": ">=7.2",
"ext-grpc": "*",
"ext-json": "*",
"ext-sysvmsg": "*",
"ext-sysvsem": "*",
"ext-sysvshm": "*",
"laravel/framework": "~5.5|~6|~7|~8",
"google/cloud-spanner": "^1.34",
"grpc/grpc": "^1.36",
Expand Down Expand Up @@ -42,6 +39,11 @@
"Colopl\\Spanner\\SpannerServiceProvider"
]
}
},
"suggest": {
"ext-sysvmsg": "Can use SemaphoreLock for session handling. Will use FileLock if not present.",
"ext-sysvsem": "Can use SemaphoreLock for session handling. Will use FileLock if not present.",
"ext-sysvshm": "Can use SemaphoreLock for session handling. Will use FileLock if not present."
}
}

0 comments on commit 4186fb8

Please sign in to comment.