Skip to content

Commit

Permalink
Support Laravel Orchid 11.x (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna authored Feb 6, 2022
1 parent 81454cb commit d2e9d3c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
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 `crud` will be documented in this file

## 3.4.0 - 2022-02-06

### Changed

- Support Laravel Orchid 11.x

## 3.3.2 - 2022-01-31

### Fixed
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
}
],
"require": {
"orchid/platform": "^10.0"
"orchid/platform": "^11.0"
},
"conflict": {
"orchid/platform": "<11.0.1"
},
"require-dev": {
"orchestra/testbench": "^6.0",
Expand Down
1 change: 1 addition & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public function setUp(): void

$this->loadLaravelMigrations();
$this->loadMigrationsFrom(realpath('./tests/Migrations'));
$this->artisan('orchid:publish');

Factory::guessFactoryNamesUsing(function ($factory) {
$factoryBasename = class_basename($factory);
Expand Down

0 comments on commit d2e9d3c

Please sign in to comment.