From 2a8557c196ea6e4d40620f6caeb2eaf2e0109d62 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 06:54:00 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 11 --- composer.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 02eb9a49..59ecd412 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,10 @@ { "name": "anayarojo/shoppingcart", "description": "Laravel Shoppingcart", - "keywords": ["laravel", "shoppingcart"], + "keywords": [ + "laravel", + "shoppingcart" + ], "license": "MIT", "authors": [ { @@ -21,15 +24,15 @@ } ], "require": { - "illuminate/support": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10", - "illuminate/session": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10", - "illuminate/events": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10", - "nesbot/carbon": "~1.20||^1.26.3||^2.0" + "illuminate/support": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10||^11.0", + "illuminate/session": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10||^11.0", + "illuminate/events": "5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0||^9.0||^10||^11.0", + "nesbot/carbon": "~1.20||^1.26.3||^2.0||^3.0" }, "require-dev": { "phpunit/phpunit": "~5.0||~6.0||~7.0||~8.0||~9.0||~10.0", "mockery/mockery": "^1.0", - "orchestra/testbench": "^3.4|^4.0|^5.0|^6.0" + "orchestra/testbench": "^3.4|^4.0|^5.0|^6.0||^9.0" }, "autoload": { "psr-4": { From 3f0430c22a97e616d4745679fa4c40c0550bfe43 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 06:54:01 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 11 --- .github/workflows/php.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 105cfc95..7f8ebde5 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -3,18 +3,23 @@ name: CI Code Checks on: pull_request: push: - branches: [ master ] + branches: + - master jobs: run: runs-on: ubuntu-latest + strategy: fail-fast: false matrix: - php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0'] + php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.2'] + env: PHP_VERSION: ${{ matrix.php-versions }} + name: PHP ${{ matrix.php-versions }} + steps: - name: Checkout uses: actions/checkout@v2