Skip to content

Commit

Permalink
chore: 5.x Upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher committed Oct 9, 2023
1 parent 304a9cc commit 46b565f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Upgrade Guide

## Upgrading to Socialstream 5.x

> [!NOTE]
> This upgrade guide assumes you're coming from Socialstream 4.x
### Changes

#### Project dependencies

Socialstream 5.x drops `laravel/jetstream`, and by extension, `laravel/fortify` as dependencies.
As a result, before you upgrade, you will need to add these dependencies to your projects' `composer.json`
file.

Add `laravel/jetstream` to your project with composer:

```shell
composer require laravel/jetstream
```

Upgrade Socialstream via composer:

```shell
composer require joelbutcher/socialstream:^5.x
```

## Upgrading to Socialstream 4.x

### Changes
Expand Down

0 comments on commit 46b565f

Please sign in to comment.