Skip to content

Commit

Permalink
Loosen version constraint on doctrine/cache
Browse files Browse the repository at this point in the history
I'm working through an issue with CacheInclude's cache not clearing on
save on a production site. There've been quite a few bug fixes in
releases to doctrine/cache over the last year, and while I can't see a
fix that specifically address the issue I'm seeing, it's possible the
underlying cause of my issue has been fixed in somewhere in there.

Haven't been able to replicate the issue occurring on the production
site in production or locally, but it's occurred twice in the last day
by itself. `doctrine/cache` >1.3 changes the cache file/folder names
also, so it's not possible to test if updating this will actually fix
my issue, since it effectively uses a different cache.

This is slightly voodoo, but doctrine/cache uses semver, so it shouldn't
be a problem loosening this constraint.
  • Loading branch information
stecman committed Nov 4, 2015
1 parent 92f1296 commit 7afb9eb
Show file tree
Hide file tree
Showing 2 changed files with 161 additions and 174 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"require": {
"php": ">=5.3.2",
"composer/installers": "~1.0",
"doctrine/cache": "~1.3.0",
"doctrine/cache": "~1.3",
"symfony/yaml": "~2.4",
"symfony/expression-language": "~2.4",
"psr/log": "~1.0"
Expand All @@ -28,4 +28,4 @@
"email": "stephen.holdaway@heyday.co.nz",
"homepage": "https://github.com/stecman/"
}]
}
}
Loading

0 comments on commit 7afb9eb

Please sign in to comment.