diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b30ea0f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" + # Maintain dependencies for Composer + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "weekly" + labels: + - "composer" + - "dependencies" diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 06c63a8..bfbca5d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,15 +9,18 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1] - laravel: [8.*, 9.*, 10.*] + php: [8.0, 8.1, 8.2, 8.3] + laravel: [9.*, 10.*, 11.*] dependency-version: [prefer-lowest, prefer-stable] - include: - - laravel: 8.* - testbench: ^6.0 exclude: + - laravel: 9.* + php: 8.3 - laravel: 10.* php: 8.0 + - laravel: 11.* + php: 8.0 + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index 81a9186..457e29b 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ "require": { "php": "^8.0", "aws/aws-sdk-php": "^3.209", - "illuminate/support": "^8.0|^9.52|^10.0", + "illuminate/support": "^9.52|^10.0|^11.0", "spatie/enum": "^3.13" }, "minimum-stability": "dev", @@ -47,7 +47,7 @@ "require-dev": { "guzzlehttp/guzzle": "^7.4", "nunomaduro/larastan": "^1.0|^2.0", - "orchestra/testbench": "^6.24|^7.0|^8.0", + "orchestra/testbench": "^7.0|^8.0|9.0", "phpunit/phpunit": "^9.5|^10.0", "vlucas/phpdotenv": "^5.4" }