Skip to content

Commit

Permalink
Merge pull request #32 from jeffreyvr/feature/laravel-11
Browse files Browse the repository at this point in the history
Feature/laravel 11
  • Loading branch information
jeffreyvr authored Mar 11, 2024
2 parents b9d8c7b + e18553c commit cdfdee6
Show file tree
Hide file tree
Showing 17 changed files with 1,317 additions and 667 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1]
laravel: [10.*, 9.*]
php: [8.3, 8.2, 8.1]
laravel: [11.*, 10.*]
stability: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: ^8.0
- laravel: 9.*
testbench: ^7.0
testbench: 8.*

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

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to `dropblockeditor` will be documented in this file.

## Unreleased

- getting ready for laravel 11 (thanks @abr4xas)
- added types (⚠️ potential breaking change) (thanks @abr4xas)

## 0.3.1 - 2024-03-06

- hide blocks sidebar with x-show to prevent dom changes (related to https://github.com/jeffreyvr/dropblockeditor/discussions/30)
Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"livewire/livewire": "^3.0",
"spatie/laravel-package-tools": "^1.13.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
Expand All @@ -37,8 +37,7 @@
},
"autoload": {
"psr-4": {
"Jeffreyvr\\DropBlockEditor\\": "src",
"Jeffreyvr\\DropBlockEditor\\Database\\Factories\\": "database/factories"
"Jeffreyvr\\DropBlockEditor\\": "src"
}
},
"autoload-dev": {
Expand Down
19 changes: 0 additions & 19 deletions database/factories/ModelFactory.php

This file was deleted.

19 changes: 0 additions & 19 deletions database/migrations/create_livewire_block_editor_table.php.stub

This file was deleted.

Loading

0 comments on commit cdfdee6

Please sign in to comment.