Skip to content

Commit

Permalink
Add compatiblity for Laravel Telescope 5.x (#77)
Browse files Browse the repository at this point in the history
* update readme.md

* add Telescope 5.x compatibility
  • Loading branch information
bornemisza committed Mar 12, 2024
1 parent 9c1d4d0 commit 2d10cc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"php": "^8",
"ext-json": "*",
"laravel/framework": "^9|^10|^11.0",
"laravel/telescope": "^4"
"laravel/telescope": "^4|^5"
},
"require-dev": {
"orchestra/testbench-dusk": "^6|^7|^8"
Expand Down
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ First install Telescope and check it works (see https://laravel.com/docs/master/
```bash
composer require laravel/telescope
php artisan telescope:install

# Telescope 5.0 no longer automatically loads migrations from its own migrations directory. Instead, you should run the following command to publish Telescope's migrations to your application:
php artisan vendor:publish --tag=telescope-migrations

php artisan migrate
```

Expand Down

0 comments on commit 2d10cc2

Please sign in to comment.