Skip to content

Commit

Permalink
Merge pull request #79 from RonasIT/78_add_new_php_event_system_support
Browse files Browse the repository at this point in the history
#78: Added new PhpUnit extension and event subscriber to support PhpUnit v10 and deleted redundant PushDocumentation artisan command
  • Loading branch information
DenTray authored Nov 13, 2023
2 parents ccda21b + 4775301 commit a440f4f
Show file tree
Hide file tree
Showing 14 changed files with 2,764 additions and 1,605 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-with-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
php-version: '8.1'
- uses: actions/checkout@v3
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ bootstrap/cache/
.rocketeer/

.phpunit.result.cache
.phpunit.cache
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM webdevops/php-nginx-dev:7.3
FROM webdevops/php-nginx-dev:8.1

RUN wget -O "/usr/local/bin/go-replace" "https://github.com/webdevops/goreplace/releases/download/1.1.2/gr-arm64-linux" \
RUN wget -O "/usr/local/bin/go-replace" "https://github.com/webdevops/go-replace/releases/download/22.9.0/go-replace.linux.arm64" \
&& chmod +x "/usr/local/bin/go-replace" \
&& "/usr/local/bin/go-replace" --version
&& "/usr/local/bin/go-replace" --version
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
}
],
"require": {
"php": ">=7.3.0",
"laravel/framework": ">=5.3.0",
"phpunit/phpunit": ">=7.0",
"php": "^8.1",
"laravel/framework": "^10.0",
"phpunit/phpunit": "^10.0",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^6.25",
"orchestra/testbench": "^8.0",
"php-coveralls/php-coveralls": "^2.5",
"php-mock/php-mock-phpunit": "^2.7"
},
Expand Down
Loading

0 comments on commit a440f4f

Please sign in to comment.