diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 338d16e..1df19ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,34 +17,35 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: php: - - '7.4' - '8.0' + - '8.1' es: - - '7.11.2' - - '7.12.1' - - '7.13.2' - - '7.14.1' + - '7.14.2' + # - '7.15.2' + - '7.16.3' + - '7.17.5' laravel: - - 7.* - 8.* + - 9.* prefer: # - 'prefer-lowest' - 'prefer-stable' include: - - laravel: '7.*' - testbench: '5.*' - laravel: '8.*' testbench: '6.*' - - es: '7.11.2' - es-php: '7.11.*' - - es: '7.12.1' - es-php: '7.12.*' - - es: '7.13.2' - es-php: '7.13.*' - - es: '7.14.1' + - laravel: '9.*' + testbench: '7.*' + - es: '7.14.2' es-php: '7.14.*' + # - es: '7.15.2' + # es-php: '7.15.*' + - es: '7.16.3' + es-php: '7.16.*' + - es: '7.17.5' + es-php: '7.17.*' name: PHP ${{ matrix.php }} - ES ${{ matrix.es }} Laravel ${{ matrix.laravel }} --${{ matrix.prefer }} diff --git a/composer.json b/composer.json index d41594d..9f24899 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,15 @@ { "name": "renoki-co/aws-elastic-client", "description": "Just a simple Elasticsearch Client handler that signs the requests for AWS Elasticsearch service with the provided credentials.", - "keywords": ["laravel", "php", "elastic", "elasticsearch", "handler", "client", "aws"], + "keywords": [ + "laravel", + "php", + "elastic", + "elasticsearch", + "handler", + "client", + "aws" + ], "license": "Apache-2.0", "homepage": "https://github.com/renoki-co/aws-elastic-client", "authors": [ @@ -12,11 +20,10 @@ } ], "require": { - "php": "^7.4|^8.0", "aws/aws-sdk-php": "^3.200", "guzzlehttp/guzzle": "^6.5|^7.3", "guzzlehttp/ring": "^1.1.1", - "illuminate/support": "^7.40|^8.40" + "illuminate/support": "^8.83|^9.0.1" }, "autoload": { "psr-4": { @@ -34,7 +41,9 @@ "require-dev": { "babenkoivan/elastic-client": "^1.2", "mockery/mockery": "^1.5", - "orchestra/testbench": "^6.24.0" + "orchestra/testbench": "^6.28|^7.0", + "orchestra/testbench-core": "^6.28|^7.0", + "phpunit/phpunit": "^9.5.13" }, "config": { "sort-packages": true