Laravel services.json not created

Sometimes mine is services.jsonmissing after running composer updateor php artisan clear-compiled.

I checked the permissions and even changed it to 777 in the storage folder, but that doesn't help. How can I debug errors?

There are no entries in my laravel log and nothing in my apache log. I am using "laravel / framework": "4.1. *"

+4
source share
2 answers

Just start php artisan serveand stop, this will create the services.json file.

+19
source

, - /, app/storage/meta/services.json, / , json, , . , . :

app/storage/views
app/storage/logs
app/storage/sessions

/

chmod -R 777 /app/storage

services.json

    {
        "providers": []
    }

php artisan

0

Source: https://habr.com/ru/post/1538363/


All Articles