Skip to content

Commit 2d10cc2

Browse files
authored
Add compatiblity for Laravel Telescope 5.x (#77)
* update readme.md * add Telescope 5.x compatibility
1 parent 9c1d4d0 commit 2d10cc2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"php": "^8",
2626
"ext-json": "*",
2727
"laravel/framework": "^9|^10|^11.0",
28-
"laravel/telescope": "^4"
28+
"laravel/telescope": "^4|^5"
2929
},
3030
"require-dev": {
3131
"orchestra/testbench-dusk": "^6|^7|^8"

readme.md

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ First install Telescope and check it works (see https://laravel.com/docs/master/
1616
```bash
1717
composer require laravel/telescope
1818
php artisan telescope:install
19+
20+
# 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:
21+
php artisan vendor:publish --tag=telescope-migrations
22+
1923
php artisan migrate
2024
```
2125

0 commit comments

Comments
 (0)