Skip to content

Commit

Permalink
chore: adjusts workflows and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Sep 8, 2024
1 parent fd6217b commit 1089b93
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
tools: composer:v2
coverage: none

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest] # (macos-latest, windows-latest) 2.x-dev is under development
php: ['8.1', '8.2', '8.3']
php: ['8.2', '8.3']
dependency-version: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
Expand Down
13 changes: 5 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,25 @@
}
],
"require": {
"php": "^8.1.0",
"pestphp/pest-plugin": "^2.1.1",
"php": "^8.2.0",
"pestphp/pest-plugin": "^3.0.0",
"react/child-process": "^0.6.5",
"react/event-loop": "^1.5.0"
},
"conflict": {
"evenement/evenement": "^1.0",
"pestphp/pest": "<2.33.0"
"pestphp/pest": "<3.0.0"
},
"autoload": {
"psr-4": {
"Pest\\Watch\\": "src/"
}
},
"require-dev": {
"pestphp/pest": "^2.35.1",
"pestphp/pest-dev-tools": "^2.16.0"
"pestphp/pest": "^3.0.0",
"pestphp/pest-dev-tools": "^3.0.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"pest": {
"plugins": [
"Pest\\Watch\\Plugin"
Expand Down

0 comments on commit 1089b93

Please sign in to comment.