Skip to content

Commit

Permalink
Added exceptional Migration Guide for v9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolim4 committed Jan 7, 2024
1 parent aa786d0 commit c877fac
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions docs/migration/MigratingFromV9.1ToV9.2.md
@@ -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).




0 comments on commit c877fac

Please sign in to comment.