Symfony Exception

Error

HTTP 500 Internal Server Error

Class "Intervention\Image\ImageServiceProvider" not found

Exception

Error

  1.      * @param  string  $provider
  2.      * @return \Illuminate\Support\ServiceProvider
  3.      */
  4.     public function createProvider($provider)
  5.     {
  6.         return new $provider($this->app);
  7.     }
  8. }
  1.         // the application so we can compare it on each request to the service
  2.         // and determine if the manifest should be recompiled or is current.
  3.         $manifest $this->freshManifest($providers);
  4.         foreach ($providers as $provider) {
  5.             $instance $this->createProvider($provider);
  6.             // When recompiling the service manifest, we will spin through each of the
  7.             // providers and check if it's a deferred provider or not. If so we'll
  8.             // add it's provided services to the manifest and note the provider.
  9.             if ($instance->isDeferred()) {
  1.         // First we will load the service manifest, which contains information on all
  2.         // service providers registered with the application and which services it
  3.         // provides. This is used to know which services are "deferred" loaders.
  4.         if ($this->shouldRecompile($manifest$providers)) {
  5.             $manifest $this->compileManifest($providers);
  6.         }
  7.         // Next, we will register events to load the providers for each of the events
  8.         // that it has requested. This allows the service provider to defer itself
  9.         // while still getting automatically loaded when a certain event occurs.
  1.                         ->partition(fn ($provider) => str_starts_with($provider'Illuminate\\'));
  2.         $providers->splice(10, [$this->make(PackageManifest::class)->providers()]);
  3.         (new ProviderRepository($this, new Filesystem$this->getCachedServicesPath()))
  4.                     ->load($providers->collapse()->toArray());
  5.     }
  6.     /**
  7.      * Register a service provider with the application.
  8.      *
  1.      * @param  \Illuminate\Contracts\Foundation\Application  $app
  2.      * @return void
  3.      */
  4.     public function bootstrap(Application $app)
  5.     {
  6.         $app->registerConfiguredProviders();
  7.     }
  8. }
  1.         $this->hasBeenBootstrapped true;
  2.         foreach ($bootstrappers as $bootstrapper) {
  3.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4.             $this->make($bootstrapper)->bootstrap($this);
  5.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6.         }
  7.     }
  1.      * @return void
  2.      */
  3.     public function bootstrap()
  4.     {
  5.         if (! $this->app->hasBeenBootstrapped()) {
  6.             $this->app->bootstrapWith($this->bootstrappers());
  7.         }
  8.     }
  9.     /**
  10.      * Get the route dispatcher callback.
  1.     {
  2.         $this->app->instance('request'$request);
  3.         Facade::clearResolvedInstance('request');
  4.         $this->bootstrap();
  5.         return (new Pipeline($this->app))
  6.                     ->send($request)
  7.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8.                     ->then($this->dispatchToRouter());
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle() in /home/domcomin/e-themes.info/index.php (line 53)
  1. $app->usePublicPath(__DIR__);
  2. $kernel $app->make(Kernel::class);
  3. $response $kernel->handle(
  4.     $request Request::capture()
  5. )->send();
  6. $kernel->terminate($request$response);

Stack Trace

Error
Error:
Class "Intervention\Image\ImageServiceProvider" not found

  at /home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:206
  at Illuminate\Foundation\ProviderRepository->createProvider()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:142)
  at Illuminate\Foundation\ProviderRepository->compileManifest()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:61)
  at Illuminate\Foundation\ProviderRepository->load()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:765)
  at Illuminate\Foundation\Application->registerConfiguredProviders()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php:17)
  at Illuminate\Foundation\Bootstrap\RegisterProviders->bootstrap()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:263)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:186)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:170)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/domcomin/botble/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/domcomin/e-themes.info/index.php:53)