diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 587a93e..de11999 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -8,9 +8,9 @@ jobs: strategy: max-parallel: 15 matrix: - laravel-version: ['5.8.*', '^6.0'] + laravel-version: ['5.8.*', '^6.0', '^8.0'] stabilty: ['stable', 'lowest'] - php-versions: ['7.2', '7.3'] + php-versions: ['7.3', '7.4'] name: PHP ${{ matrix.php-versions }} on ${{ matrix.laravel-version }} (${{ matrix.stabilty }}) steps: - name: Checkout diff --git a/README.md b/README.md index 323f8a6..be6c5ac 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Total Downloads](https://img.shields.io/packagist/dt/thujohn/twitter.svg?style=flat-square)](https://packagist.org/packages/thujohn/twitter) ![GitHub Release Date](https://img.shields.io/github/release-date/atymic/twitter?label=latest%20release&style=flat-square) -Twitter API for Laravel 5.5+, 6.x and 7.x +Twitter API for Laravel 5.5+, 6.x, 7.x & 8.x You need to create an application and create your access token in the [Application Management](https://apps.twitter.com/). diff --git a/composer.json b/composer.json index 914c546..a54432c 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ ], "require": { "php": ">7.2.5", - "illuminate/support": "~5.5 || ~6.0 || ~7.0", + "illuminate/support": "~5.5 || ~6.0 || ~7.0 || ~8.0", "atymic/tmhoauth": "0.8.6", "ext-json": "*" },