missing file
Closed this issue · 2 comments
Hello
Thank you simon816 for amazing script . we want use it but we found a missing file require 'vendor/autoload.php';
vendor/autoload.php
can you please help us to get this file please ?
Oh, that's from Composer, I should provide instructions on the README.
What you'll need to do is get composer
, either from the website https://getcomposer.org/download/ or from your package manager (on linux).
Then cd
into the repo root (where composer.json
is located), and run composer install
. It will download the dependencies and generate a vendor/autoload.php
for you.
Oh, that's from Composer, I should provide instructions on the README.
What you'll need to do is get
composer
, either from the website https://getcomposer.org/download/ or from your package manager (on linux).
Thencd
into the repo root (wherecomposer.json
is located), and runcomposer install
. It will download the dependencies and generate avendor/autoload.php
for you.
Thanks you