> For the complete documentation index, see [llms.txt](https://alphavantage-api.marcelwagner.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alphavantage-api.marcelwagner.dev/alphavantage-laravel-api/installation.md).

# 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.
