ClickSend / clicksend-php

A wrapper for our REST API - SMS, voice, post, email, fax.
27 stars 14 forks source link

Where can I download this autoload.php file #22

Closed burt00 closed 3 years ago

jacksegal commented 3 years ago

Hey - the autoload.php file is generated by composer

michaelbutler commented 3 years ago

To follow up, have a look at the README.md again. You have to do this:

composer require clicksend/clicksend-php

You should run that in the root of your project directory, for example let's say you are in My Documents/MyProject. After running the composer command, it will auto-create My Documents/MyProject/vendor/autoload.php.

So let's say you have My Documents/MyProject/index.php -- at the top of that you would say require_once './vendor/autoload.php';