Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #10 from pboivin/twill-3
Browse files Browse the repository at this point in the history
Support Twill 3.x
  • Loading branch information
pboivin authored Feb 9, 2023
2 parents 6640bfb + a2acdd2 commit b546611
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ jobs:
matrix:
php: ['8.2', '8.1', '8.0', '7.4']
twill: ['3.0.0-rc3', '2.*']
include:
- php: '8.2'
dusk: '7.*'
testbench: '7.*'
- php: '8.1'
dusk: '7.*'
testbench: '7.*'
- php: '8.0'
dusk: '7.*'
testbench: '7.*'
- php: '7.4'
dusk: '6.*'
testbench: '6.*'
exclude:
- twill: '3.0.0-rc3'
php: '7.4'
Expand Down Expand Up @@ -46,7 +59,7 @@ jobs:
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
composer require "area17/twill:${{ matrix.twill }}" --no-interaction --no-update
composer require "orchestra/testbench:${{ matrix.testbench }}" "laravel/dusk:${{ matrix.dusk }}" "area17/twill:${{ matrix.twill }}" --no-interaction --no-update
composer install --prefer-dist --no-interaction --no-plugins
- name: Run test suite
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"area17/twill": "^2.0|^3.0"
},
"require-dev": {
"orchestra/testbench": "^7.0",
"laravel/dusk": "^7.6"
"orchestra/testbench": "^6.0|^7.0",
"laravel/dusk": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit b546611

Please sign in to comment.