Andrey Helldar
Andrey Helldar
Also, what version of Composer are you using? ```bash composer --version ``` My version is: ```bash $ composer --version Composer version 2.7.7 2024-06-10 22:11:12 PHP version 8.3.9 (D:\modules\php\php.exe) Run the...
As a hard solution, you can restrict the Common version by making the following changes to your `composer.json` file: ```diff -"laravel-lang/common": "^6.3", +"laravel-lang/common": "6.3.*", ``` After that, you need to...
There's nothing suspicious. I rolled back my PHP version to 8.1.29 and tried running the commands again. No errors: log ```bash Helldar@HellPC MINGW64 /d/domains/test-198 $ composer --version Composer version 2.7.7...
> ``` > A:\PhpstormProjects\elica(main -> origin) > λ rm -f storage/logs/laravel.log > > A:\PhpstormProjects\elica(main -> origin) > λ php artisan package:discover > > A:\PhpstormProjects\elica(main -> origin) > ``` And how...
It's a very strange problem. I will come back later and try again to reproduce or find a logging method.
@bedoz, try replacing the `vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php` file with the following (it has added try-catch to the `build` method. It is responsible for processing packages in the `package:discover` console command (`vendor/laravel/framework/src/Illuminate/Foundation/Console/PackageDiscoverCommand.php:36`)): Details...
@bedoz, hi! Any luck with the problem?
Okay. I'll be waiting. I have not been able to reproduce the problem, but would like to know the cause of the problem.
Technically, this is possible. But you'll need to understand which IDE or text editor should be used to generate the file link.
Yes, you can define the editor via a variable and copy the possible paths from Laravel Core: https://github.com/laravel/framework/blob/12.x/src/Illuminate/Foundation/Concerns/ResolvesDumpSource.php You can submit a PR adding this functionality.