# Installation

You can install the package via composer:

```bash
composer require tschucki/alphavantage-laravel
```

You can publish the config file with:

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

This is the contents of the published config file:

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

Pay Alphavantage and get your API key [here](https://www.alphavantage.co/support/#api-key).

You are now ready to take off.
