Skip to content

Commit ccf8c11

Browse files
committed
Upgrading phpunit dependecies for PHP 8 compatibility
1 parent 874b51c commit ccf8c11

4 files changed

Lines changed: 209 additions & 404 deletions

File tree

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install Dependencies
2828
run: |
2929
sudo composer self-update --no-interaction
30-
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
30+
composer install --no-ansi --no-interaction --no-progress --no-scripts --prefer-dist
3131
3232
- name: Execute PHPUnit tests
3333
run: vendor/bin/phpunit

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
7979
## Dcoker usage
8080
```
8181
docker run --rm -it --volume $(pwd):/var/www/html/ php:7.4-fpm-alpine /bin/ash
82+
docker run --rm -it --volume $(pwd):/var/www/html/ php:8.0-fpm-alpine /bin/ash
8283
```
8384

8485
[ico-version]: https://img.shields.io/packagist/v/webkod3r/laravel-swivel.svg?style=flat-square

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
},
3131
"require-dev": {
3232
"mockery/mockery": "^1.2",
33-
"orchestra/testbench": "^4.0|^5.0|^6.0",
3433
"orchestra/database": "^4.0|^5.0|^6.0",
35-
"phpunit/phpunit": "^7.0",
34+
"orchestra/testbench": "^4.0|^5.0|^6.0",
35+
"phpunit/phpunit": "^8.0",
3636
"squizlabs/php_codesniffer": "^3.4"
3737
},
3838
"autoload": {

0 commit comments

Comments
 (0)