Auth0 using PHP without composer

I was wondering if anyone had any luck with using Auth0 with PHP without Composer.

I am using a windows server so don’t have access to a terminal. I’m not sure how to pull in all the needed files as the example from Auth0 for PHP only uses composer.

For reference, the quickstart guide for Auth0 for PHP has the following step which is the one I’m seeking alternatives for:

Add the Dependencies

To install dependencies, run the following

composer require auth0/auth0-php:"~5.0"

This sample uses Composer, a tool for dependency management in PHP. It allows you to declare the dependent libraries your project needs and it will install them in your project for you."

As you already noticed the sample uses Composer as means to simplify the installation process because otherwise people would have to manually and recursively check for dependencies and install them manually.

The recommendation would be for you to have access to Composer, but if you really want to consider an alternative approach you can start by having a look at: How do I install Composer PHP packages without Composer? - Stack Overflow