Installation

Installation of the Alphavantage Laravel API

You can install the package via composer:

composer require tschucki/alphavantage-laravel

You can publish the config file with:

php artisan vendor:publish --tag="alphavantage-laravel-config"

This is the contents of the published config file:

return [
    'key' => env('ALPHAVANTAGE_API_KEY'),
];

Pay Alphavantage and get your API key here.

You are now ready to take off.

Last updated