diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 78593a3..ce09567 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,15 +1,18 @@ name: tests -on: [push, pull_request] +on: + - push + - pull_request jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: true matrix: os: [ubuntu-latest] - php: ["7.4", "8.0", "8.1"] + php: ['7.4', '8.0', '8.1', '8.2'] dependency-version: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index d44c6ea..0c4755c 100644 --- a/composer.json +++ b/composer.json @@ -10,21 +10,23 @@ ], "homepage": "https://github.com/bensampo/laravel-embed", "license": "MIT", - "authors": [{ - "name": "Ben Sampson", - "homepage": "https://sampo.co.uk", - "role": "Developer" - }], + "authors": [ + { + "name": "Ben Sampson", + "homepage": "https://sampo.co.uk", + "role": "Developer" + } + ], "require": { "php": "^7.4.0|^8.0", "guzzlehttp/guzzle": "^6.3.1|^7.0", - "illuminate/contracts": "^8.83.27|^9.0|^10.0", - "illuminate/support": "^8.83.27|^9.0|^10.0" + "illuminate/contracts": "^8.83.27|^9.0|^10.0|^11.0", + "illuminate/support": "^8.83.27|^9.0|^10.0|^11.0" }, "require-dev": { - "laravel/framework": "^8.83.27|^9.0|^10.0", - "orchestra/testbench": "^5.0|^6.0", - "phpunit/phpunit": "^8.5.23|^9.0" + "laravel/framework": "^8.83.27|^9.0|^10.0|^11.0", + "orchestra/testbench": "^5.0|^6.0|^9.0", + "phpunit/phpunit": "^8.5.23|^9.0|^10.5" }, "autoload": { "psr-4": { @@ -52,4 +54,4 @@ "config": { "sort-packages": true } -} \ No newline at end of file +}