[Solved] Laravel Lumen— Class ‘League\Flysystem\Adapter\Local’ not found

Lim Sing
Apr 13, 2022

Problem: I get this error from running my custom lumen packagist (version — 8.3.1):

Class 'League\Flysystem\Adapter\Local' not found

Solution:

This is an issue from installing version 2.0 for league/flysystem, you need to install league/flysystem packagists to version 1 in order to access the missing adapter by running:

composer require — dev league/flysystem ^1.0

--

--