-1

When I'm Creating Panels using Laravel 6.x version. Maybe Fault in Laravel Version or Composer Version. Also, I'm using Jetbrains PHPSTORM powerful PHP editor for Laravel. lara

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Mubashir
  • 75
  • 1
  • 3
  • 9
  • Check it - https://stackoverflow.com/questions/54675520/composer-update-the-requested-php-extension-ext-http-missing – Dmitry Leiko Feb 07 '20 at 08:27

1 Answers1

1

If you're missing package / extension, all you have to do is to add it to your composer.json under dependencies - like so

{
  "require": {
    "ext-http": "*",
  }
}

I'm not entirely sure why you'd like to use http\Env\Request - are you sure you're not after Illuminate\Http\Request ?

Sebastian Sulinski
  • 5,815
  • 7
  • 39
  • 61