Skip to content

Commit

Permalink
Merge pull request #3 from takethelead/feature/storyblok-v2-support
Browse files Browse the repository at this point in the history
Feature/storyblok v2 support
  • Loading branch information
RenoSimonsTTL authored Oct 2, 2023
2 parents ce35c93 + 586f770 commit 295573b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0, 8.1]
laravel: [8.*, 9.*]
php: [8.1, 8.2]
laravel: [9.*, 10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.23
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to `laravel-storyblok` will be documented in this file.

## 2.1.0 - 2023-10-02
- Upgrade to the latest version of the storyblock client for v2 support
- Laravel 10 is now supported
- Laravel 8 is no longer supported
- PHP 8.0 is no longer supported

## 2.0.0 - 2022-11-29
- Upgrade to thet latext version of the rich text resolver (https://github.com/storyblok/storyblok-php-richtext-renderer/releases/tag/2.1.0)

Expand Down
21 changes: 10 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,18 @@
}
],
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/filesystem": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0",
"illuminate/console": "^8.0|^9.0",
"illuminate/routing": "^8.0|^9.0",
"storyblok/php-client": "^1.6",
"storyblok/richtext-resolver": "^2.1",
"apix/cache": "^1.3",
"ext-json": "*"
"php": "^8.1|^8.2",
"ext-json": "*",
"illuminate/console": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/filesystem": "^9.0|^10.0",
"illuminate/routing": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"storyblok/php-client": "^2.6",
"storyblok/richtext-resolver": "^2.1"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5.8"
},
"autoload": {
Expand Down

0 comments on commit 295573b

Please sign in to comment.