-
-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added exceptional Migration Guide for v9.2
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Because the V9.2 is **completely** backward compatible with the V9.1, there's a small guide to help you to migrate your code: | ||
|
||
### :warning: Phpfastcache core drivers has been moved to their own extensions | ||
If you were using one of those drivers: | ||
|
||
`Arangodb` | ||
`Couchdb` | ||
`Dynamodb` | ||
`Firestore` | ||
`Mongodb` | ||
`Solr` | ||
|
||
Your **CODE IS SAFE AND FINE**, you just need to add a new composer dependency, ex: | ||
```bash | ||
composer install phpfastcache/arangodb-extension | ||
``` | ||
|
||
### :new: Couchbasev4 has been as an extension: | ||
```bash | ||
composer install phpfastcache/couchbasev4-extension | ||
``` | ||
However `Couchbasev3` **will stay in the core** for compatibility reasons but will be deprecated. | ||
|
||
|
||
That's it :) | ||
------ | ||
More information in our comprehensive [changelog](./../../CHANGELOG.md). | ||
|
||
|
||
|
||
|