Skip to content
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

Update required symfony/lock dependency version #515

Merged
merged 1 commit into from
May 25, 2017
Merged
Show file tree
Hide file tree
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 composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"vierbergenlars/php-semver": "^3.0",
"google/proto-client-php": "^0.13",
"google/gax": "^0.9",
"symfony/lock": "dev-master#1ba6ac9"
"symfony/lock": "3.3.x-dev#1ba6ac9"
},
"suggest": {
"google/gax": "Required to support gRPC",
Expand Down
2 changes: 1 addition & 1 deletion src/Core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"psr/http-message": "1.0.*"
},
"suggest": {
"symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: dev-master#1ba6ac9"
"symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
},
"extra": {
"component": {
Expand Down
4 changes: 2 additions & 2 deletions src/Spanner/Session/CacheSessionPool.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
* also required to be installed as a separate dependency. In our current alpha
* state with Spanner we are relying on the following dev commit:
*
* `composer require symfony/lock:dev-master#1ba6ac9`
* `composer require symfony/lock:3.3.x-dev#1ba6ac9`
*
* As development continues, this dependency on a dev-master branch will be
* discontinued. Please also note, since this is a dev-master dependency it may
Expand Down Expand Up @@ -754,7 +754,7 @@ private function getDefaultLock()
throw new \RuntimeException(
'The symfony/lock component must be installed in order for ' .
'a default lock to be assumed. Please run the following from ' .
'the command line: composer require symfony/lock:dev-master#1ba6ac9. ' .
'the command line: composer require symfony/lock:3.3.x-dev#1ba6ac9. ' .
'Please note, since this is a dev-master dependency it may ' .
'require modifications to your composer minimum-stability ' .
'settings.'
Expand Down
2 changes: 1 addition & 1 deletion src/Spanner/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"google/proto-client-php": "^0.13"
},
"suggest": {
"symfony/lock": "Required for the default session handler. Should be included as follows: symfony/lock:dev-master#1ba6ac9"
"symfony/lock": "Required for the default session handler. Should be included as follows: 3.3.x-dev#1ba6ac9"
},
"extra": {
"component": {
Expand Down