You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I love the project. Just curious how to install it? I noticed the usage of an autoload.php file in the example. I guess it's installed from composer? Is the package name the same as this repository name? Or is there a way to know this that I'm missing?
The text was updated successfully, but these errors were encountered:
Yes, that is correct. The vendor/autoload.php file is provided by Composer.
A quick way to get started with composer would be:
# Create a project folder and set up a basic Composer manifest.
$ mkdir myproject
$ cd myproject
$ composer init --name=myvendor/myproject --require=pfrenssen/matomo-reporting-api:^1.0 --no-interaction
# Install the library. This step also sets up the `./vendor/autoload.php` file.
$ composer install
Hi! I love the project. Just curious how to install it? I noticed the usage of an autoload.php file in the example. I guess it's installed from composer? Is the package name the same as this repository name? Or is there a way to know this that I'm missing?
The text was updated successfully, but these errors were encountered: