67

Loading composer repositories with package information Updating dependencies (including require-dev) Package operations: 0 installs, 0 updates, 1 removal - Removing genealabs/laravel-caffeine (0.3.12) Writing lock file Generating optimized autoload files

Illuminate\Foundation\ComposerScripts::postAutoloadDump @php artisan package:discover

[Symfony\Component\Debug\Exception\FatalThrowableError]
Class 'GeneaLabs\LaravelCaffeine\LaravelCaffeineServiceProvider' not found

Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1

Pred
  • 710
  • 1
  • 5
  • 10
  • 12
    just run `composer update` to install the required packages ,Check [this](https://github.com/GeneaLabs/laravel-caffeine/issues/44) – Neji Soltani Oct 28 '17 at 03:42
  • I occasionally get this error, so far I've found that simply executing the command again works. `composer dump autoload` – liamvictor Mar 12 '19 at 10:30
  • 10
    @liamvictor I believe you meant to say `composer dump-autoload`, just in case anyone comes across this. – Colin May 14 '20 at 18:49
  • 3
    That's worked for me. Running the command **php artisan package:discover --ansi** by itself might tell you more about the issue. – MsM Robin Jun 21 '21 at 09:44
  • this command is very helpful to find out the actual cause. @MsMRobin thanks – Moaz Ateeq Aug 23 '21 at 17:41

27 Answers27

65

I simply ran composer update and it resolved my issue - Laravel 6.*

BE KNOW DO
  • 783
  • 5
  • 6
34

Add this in composer.json. Then dusk has to be installed explicitly in your project:

"extra": {
    "laravel": {
        "dont-discover": [
            "laravel/dusk"
        ]
    }
},

I found this solution here

SevenEleven
  • 2,326
  • 2
  • 32
  • 32
Abed Bilani
  • 614
  • 6
  • 7
23

In case you're coming from a google search, make sure that you have a .env file in which APP_ENV is set to local. (if you cloned a project from github, the first thing is to run cp .env.example .env. That was actually the problem in my case)

Then run composer install again.

Itope84
  • 471
  • 5
  • 7
  • This solves the problem for me. The **.env** is replaced by .env.example for project from GitHub. So we need to create it using the **.env.example** by running the command **cp .env.example .evn** . The command us just copying the **.env.example** and set it name by **.env** – stic-lab Jan 30 '22 at 08:57
6

You have added the service provider in config/app.php for the package that is not installed in the system.

You must have this line in your config/app.php. You can either remove it or install the package GeneaLabs\LaravelCaffeine\LaravelCaffeineServiceProvider

See https://github.com/GeneaLabs/laravel-caffeine.

Run the line below via CLI to install the package.

 composer require genealabs/laravel-caffeine
1000Nettles
  • 2,314
  • 3
  • 22
  • 31
Sakshi Garg
  • 549
  • 1
  • 5
  • 13
4

My problem was fideloper proxy version.

when i upgraded laravel 5.5 to 5.8 this happened

just sharing if anybody get help

change you composer json fideloper version:

"fideloper/proxy": "^4.0",

After that you need to run update composer that's it.

composer update
Emtiaz Zahid
  • 2,645
  • 2
  • 19
  • 35
4

In case the error appears when upgrading from Laravel 6 to Laravel 7, the command composer require laravel/ui "^2.0" solves the problem (see https://laravel.com/docs/7.x/upgrade#authentication -scaffolding)

robotu
  • 203
  • 2
  • 7
4

Running the command php artisan package:discover --ansi by itself might tell you more about the issue. In my case correcting a character out of place in the .env solved it.

hmg
  • 186
  • 1
  • 7
  • 1
    This is weird the exact same case happen to both of us the same DAY, in my case it was a character in my passport tokens declaration – Danys Chalifour Mar 14 '21 at 18:02
3

This happened to me because I had a ddd() or dd();die; in my routes/web.php file I forgot about.

Joe
  • 427
  • 1
  • 6
  • 16
3

In my case, I had left over references to classes in a recently removed composer package. In your laravel app, check config/app.php, particularly the providers and aliases properties, for references to the class specified in the error.

3

I needed rollback for the 1.9.x version, in 2.x.x not work

composer self-update --rollback
Diogo Machado
  • 396
  • 2
  • 11
  • This was the cause of my issue. A deploy script that installed composer into the current folder if composer was not already on the system installed a 2.0.x version of composer. – Jim OHalloran Dec 14 '20 at 06:19
3

You could try

composer update

That worked for me when I had this same issue. In my case what made me discover this issue was when i tried to run the artisan command and it didn't return anything

So I tried composer dumpautoload which threw me this same error mentioned

composer update did the trick

2

I came across this when upgrading from 5.8 to 6.x.

I had str_slug() in config/cache.php and config/session.php.

I have changed it to Str::slug() and the error has disappeared.

See https://laravel.com/docs/6.x/upgrade#helpers.

Roman Grinyov
  • 222
  • 2
  • 5
  • 20
2

in this case, I use space for APP_NAME key in .env file.

and have below error :

The environment file is invalid!
Failed to parse dotenv file due to unexpected whitespace. Failed at [my name].
Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1

Don't use space in APP_NAME key !!

Mostafa Norzade
  • 1,578
  • 5
  • 24
  • 40
2

Just Remove bootstrap/cache/config.php file. then it works fine

Keshab Pal
  • 31
  • 3
  • Then after composer dump-autoload – Keshab Pal Mar 21 '21 at 09:14
  • 1
    Please [edit your answer](https://stackoverflow.com/posts/66730584/edit) instead of adding a new comments. – Syscall Mar 21 '21 at 09:47
  • 1
    In my case I was trying to remove a package but forgot to remove it from config/app.php providers section hence, the error and this results to being unable to run php artisan and/or composer dumpautoload. Remove bootstrap/cache/config.php file then run composer dumpautoload again. After that php artisan works again just fine. – Dale Ryan Nov 05 '21 at 03:52
2

My solution was creating the storage/framework/cache/data/cache folder and gave it permissions

STREET MONEY
  • 534
  • 4
  • 8
  • 1- add all directories in cache directory "storage\framework\cache\data\cache" 2- Remove bootstrap/cache/config.php file. 3- remove incorrect syntax of .env file – Anas Alpure Jan 27 '22 at 19:48
1

Just run composer update it will solve the issues.

1

In my case this error happened to me when i removed a package with composer remove, then i realized somehow, something affected my config files in config directory, and they all become empty.

Solution for me was simply getting those files from Laravel repository and copy them into config directory. (and of course in case you need to do vendor publish for specific libraries, you should do it again.)

Atlas-Pio
  • 1,063
  • 11
  • 26
0

If none of the solutions work for you, the handling the post-autoload-dump event returned with error code 1 error can also be caused by using Composer 2 instead of Composer 1. That can happen when you run the install command manually in something like a Dockerfile, and it installs newest. Just modify your command to install the last 1.x.x stable version with the --1 option:

curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --1

Or, specify a certain version with --version=x.x.x:

curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --version=1.10.17

It might be good to also delete your vendor directory and composer.lock file so that nothing stale interferes with the version downgrade, before calling composer install as usual.

Zack Morris
  • 4,727
  • 2
  • 55
  • 83
0

in my case the problem was into outdated "../bootstrap/cache/packages.php and services.php"

I have had to. drop those files and rerun composer install...

  Erroneous data format for unserializing 'Symfony\Component\Routing\CompiledRoute'


Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1
dmitri
  • 460
  • 5
  • 11
0

I have same issue

above this error

Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1

I found one more message in my terminal like: "

"Cartalyst\Stripe\Laravel\StripeServiceProvider::class, not found in your ProviderRepository.php"

then i go config/app.php and find

Cartalyst\Stripe\Laravel\StripeServiceProvider::class

comment it out then run

composer update

it will work fine **In your case maybe package name is different please check your terminal **

Dharman
  • 30,962
  • 25
  • 85
  • 135
hariom nagar
  • 370
  • 3
  • 5
0

in my case this was the error

> @php artisan package:discover --ansi

In AuthServiceProvider.php line 29:

  syntax error, unexpected '=>' (T_DOUBLE_ARROW), expecting ')'


Script @php artisan package:discover --ansi handling the post-autoload-dump event returned with error code 1

I solved it by upgrading PHP version to 7.4

because i was using Arrow functions in the AuthServiceProvider that came up in 7.4

0

step 1: create .env file

step 2: create storage folders and sub folder enter image description here

step3: run command composer install again

Đọc truyện hay
  • 1,913
  • 21
  • 17
0

If composer update and composer install not work then you can try this composer require laravel/sanctum

Bipu
  • 11
  • 4
0

Please check first artisan file present in root folder and this error is occurred because some file is missing from your project, download new laravel project and check all files with your existing project

Ajay
  • 1
  • 1
0

if you cloned a project from github, the first thing is to run cp .env.example .env.

Then run composer install again.

That was actually the problem in my case

this is idea from @Itope84

Kuncing
  • 1
  • 1
-1

Check your code for errors in my case i had an error in Kernel.php. First solve errors if any Than run composer require ....(package you wish)

Yllndrit
  • 57
  • 6
-2

remove the config.php file located in bootstrap/cache/ enter link description here

that's works with me