Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update phpunit #2253

Merged
merged 27 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f139314
fixed markdown warnings
s-martin Oct 18, 2023
02b8c68
fix flake warnings
s-martin Oct 18, 2023
0924bfe
Merge remote-tracking branch 'remotes/upstream/develop' into develop
s-martin Oct 22, 2023
145ba20
Merge remote-tracking branch 'remotes/upstream/develop' into develop
s-martin Nov 8, 2023
8ce81b4
Bump coverallsapp/github-action from 1 to 2
dependabot[bot] Dec 1, 2023
18c5a9b
Merge pull request #25 from s-martin/dependabot/github_actions/covera…
s-martin Dec 27, 2023
0b7f88e
Bump github/codeql-action from 2 to 3
dependabot[bot] Jan 1, 2024
d0bd78a
Bump actions/setup-python from 4 to 5
dependabot[bot] Jan 1, 2024
8aa72c2
Bump php-mock/php-mock-phpunit from 2.8.0 to 2.9.0
dependabot[bot] Jan 1, 2024
95f8628
Bump phpunit/phpunit from 9.6.13 to 9.6.15
dependabot[bot] Jan 1, 2024
705dce0
Merge pull request #35 from s-martin/dependabot/composer/phpunit/phpu…
s-martin Jan 4, 2024
a86a300
Merge pull request #33 from s-martin/dependabot/github_actions/action…
s-martin Jan 4, 2024
3104c41
Merge pull request #34 from s-martin/dependabot/composer/php-mock/php…
s-martin Jan 4, 2024
8cbb269
Merge pull request #32 from s-martin/dependabot/github_actions/github…
s-martin Jan 4, 2024
85a4e1b
Merge branch 'MiczFlor:develop' into develop
s-martin Jan 4, 2024
6cc0332
update phpunit
s-martin Feb 11, 2024
2325727
dont enforce php version in action
s-martin Feb 11, 2024
55cbe2f
explicitly set used version 7.4
s-martin Feb 11, 2024
6121a60
pin instantiator version to 1.5
s-martin Feb 13, 2024
b245641
test usage of 7.3
s-martin Feb 13, 2024
789a262
revert last change
s-martin Feb 13, 2024
2334219
update to latest phpunit 11 and remove patch for serialize
s-martin Feb 13, 2024
46a4b5f
use php 10 instead of 11
s-martin Feb 13, 2024
272788a
update to latest phpunit an php 8.x for github action
s-martin Feb 13, 2024
921d9d6
fix phpunit command line option
s-martin Feb 13, 2024
a39cc95
remove unnecessary package
s-martin Feb 13, 2024
5fcc244
pin php-mock-phpunit only to major version
s-martin Feb 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup PHP with XDebug
uses: shivammathur/setup-php@v2
with:
php-version: 7.3
php-version: 8.x
coverage: xdebug
tools: composer

Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
"description": "A Raspberry Pi jukebox, playing local music, podcasts, web radio and streams triggered by RFID cards, web app or home automation. All plug and play via USB. GPIO scripts available.",
"type": "project",
"require-dev": {
"phpunit/phpunit": "^9",
"php-mock/php-mock-phpunit": "^2.6",
"mpyw/phpunit-patch-serializable-comparison": "^0.0.2"
"phpunit/phpunit": "^11",
"php-mock/php-mock-phpunit": "^2"
},
"license": "MIT",
"authors": [
Expand All @@ -15,7 +14,7 @@
],
"minimum-stability": "stable",
"scripts": {
"test": "vendor/bin/phpunit ./tests/htdocs --exclude real-env",
"test": "vendor/bin/phpunit ./tests/htdocs --exclude-group real-env",
"test-all": "vendor/bin/phpunit ./tests/htdocs"
}
}
Loading