Skip to content

Commit

Permalink
Merge pull request #6 from PeerMeHQ/deps
Browse files Browse the repository at this point in the history
Deps
  • Loading branch information
michavie authored May 3, 2024
2 parents 3814724 + ffc8695 commit dbc6914
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10,159 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.3]
laravel: [10.*]
laravel: [10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

Expand All @@ -37,7 +39,7 @@ jobs:
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/pest
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ docs
phpunit.xml
psalm.xml
vendor
composer.lock
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"kevinrob/guzzle-cache-middleware": "^4.0",
"multiversx/mx-sdk-php": "^0.1"
"php": "^8.2",
"illuminate/contracts": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0",
"kevinrob/guzzle-cache-middleware": "^5.1",
"multiversx/mx-sdk-php": "^0.2"
},
"require-dev": {
"laravel/pint": "^1.8",
"orchestra/testbench": "^7.4 || ^8.0",
"orchestra/testbench": "^8.0 || ^9.0",
"pestphp/pest": "^2.4",
"pestphp/pest-plugin-laravel": "^2.0",
"spatie/pest-plugin-test-time": "^2.0"
Expand Down
Loading

0 comments on commit dbc6914

Please sign in to comment.