-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
corrects spanner dependency on core and removes symfony/lock requirem…
…ent (#503) * corrects spanner dependency on core and removes symfony/lock requirement * changes core php req to >=5.5
- Loading branch information
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,16 @@ | |
"license": "Apache-2.0", | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">=5.5.9", | ||
"php": ">=5.5", | ||
"rize/uri-template": "~0.3", | ||
"google/auth": "^0.11", | ||
"guzzlehttp/guzzle": "^5.3|^6.0", | ||
"guzzlehttp/psr7": "^1.2", | ||
"monolog/monolog": "~1", | ||
"psr/http-message": "1.0.*", | ||
"symfony/lock": "dev-master" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
GrahamCampbell
|
||
"psr/http-message": "1.0.*" | ||
}, | ||
"suggest": { | ||
"symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: dev-master#1ba6ac9" | ||
}, | ||
"extra": { | ||
"component": { | ||
|
Correct version constraint would be
^3.4|^4.0
.