After installing Telescope by running composer require laravel/telescope --dev
on Laravel 6.0-dev,
when I'm going to publish it using php artisan telescope:install
, I get the following error:
Publishing Telescope Service Provider...
Publishing Telescope Assets...
Publishing Telescope Configuration...
Telescope scaffolding installed successfully.
InvalidArgumentException : Length must be a positive integer.
at C:\xampp\htdocs\homeefy\vendor\ramsey\uuid\src\Generator\CombGenerator.php:
63
59| */
60| public function generate($length)
61| {
62| if ($length < self::TIMESTAMP_BYTES || $length < 0) {
> 63| throw new \InvalidArgumentException('Length must be a positi
ve integer.');
64| }
65|
66| $hash = '';
67|
Exception trace:
1 Ramsey\Uuid\Generator\CombGenerator::generate()
C:\xampp\htdocs\homeefy\vendor\ramsey\uuid\src\Generator\CombGenerator.php
:69
I'm using Laravel 6.0-dev and Windows 10 with XAMPP. PHP version is 7.3.8
What do I need to solve it? I can't find a solution in Google.