Where is the light?

Every time I try to make some changes in a specific area, such as authentication, I end up discovering that everything is declared in Illuminate\Foundation\....

Ok, now I only need to get to this place and learn some codes.

But hey, where is it Illuminateand all the rest ???

I do not see any folders called Illuminate anywhere in my Laravel package.

I tried to find a solution, but I think I'm the only stupid person who lacks the ability to understand some basics.

+4
source share
2 answers

Just to officially answer this question.

, , Laravel , , Laravel.

+6

Laravel Composer.

:

composer.lock. PSR. , Laravel/framework:

       {
        "name" : "laravel/framework",
        .......
        .......
        "autoload": {
            "classmap": [
                "src/Illuminate/Queue/IlluminateQueueClosure.php"
            ],
            "files": [
                "src/Illuminate/Foundation/helpers.php",
                "src/Illuminate/Support/helpers.php"
            ],
            "psr-4": {
                "Illuminate\\": "src/Illuminate/"
            }
        }
       }

vendor , composer.lock. , Illuminate Laravel/framework . vendor/laravel/framework

, Illuminate vendor/laravel/framework/src/Illuminate

+4

All Articles