Skip to content

Commit

Permalink
chore(deps): Support Laravel 10.x (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x authored Nov 16, 2023
1 parent 65011ec commit aa17bb4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1,050 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ["7.3", "7.4", "8.0"]
php-versions: ["8.0", "8.1"]

steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
php-version: "8.1"
coverage: xdebug
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -24,8 +24,8 @@ jobs:
- uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-7.4.x-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-7.4.x-composer-
key: ${{ runner.os }}-8.1.x-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-8.1.x-composer-

- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader --no-suggest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor
composer.lock
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
}
},
"require": {
"php": "^7.3|^8.0",
"illuminate/pagination": "^7.0|^8.0|^9.0"
"php": "^8.0",
"illuminate/pagination": "^9.0|^10.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5"
Expand Down
Loading

0 comments on commit aa17bb4

Please sign in to comment.