Skip to content

Commit

Permalink
Added pestphp/pest to dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonrietdijk committed Sep 25, 2024
1 parent a7830f3 commit aab4ba6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:

- name: Install dependencies
run: |
composer config allow-plugins.pestphp/pest-plugin true
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" pestphp/pest --no-interaction --no-update
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: XDEBUG_MODE=coverage php vendor/bin/pest --coverage --min=100
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
"laravel/framework": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.18",
"orchestra/testbench": "^8.27|^9.5",
"pestphp/pest": "^2.0",
"phpstan/phpstan-mockery": "^1.1",
"phpunit/phpunit": "^10.5"
},
Expand Down Expand Up @@ -48,7 +49,8 @@
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
},
"extra": {
Expand Down

0 comments on commit aab4ba6

Please sign in to comment.