code error when creating controller in laravel php artisan make:Controller KmsController
RuntimeException
Unable to detect application namespace.
Illuminate\Console\GeneratorCommand::rootNamespace()
and I tried: composer dump-autoload
In JsonFile.php line 340:
"./composer.json" does not contain valid JSON
Parse error on line 65:
...fer-stable": true}{ "require": {
--------------------^
Expected one of: 'EOF', '}', ',', ']'
If your
json
you posted is exactly like that, your error is at the bottom, see this part:You have to move the text inside the
require
(at the bottom) into the top where you also haverequire
, same forconfig
...Your JSON should be like this:
BUT, you can see you now have the same package, twice, with 2 different versions:
You will have to know if
phpoffice/phpspreadsheet
needs to be^1.25
or^1.23
. I will assume using1.25
is fine