I am working on a laravel project that needs to work besides a custom php project, because that I need to get access to the pure php globals $_SESSION and $_COOKIE in the la
Laravel has its own implementation of those globals, but you can access them over Symfony request class - which is parent of Laravel request.
Symfony is working directly with globals.