Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
vendor
coverage
node_modules
.phpunit.result.cache
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ We are currently looking for contributors to help us complete the work on the pa
There is a guide to developing for developer.wordpress.org in the [WordPress documentation handbook](https://make.wordpress.org/docs/handbook/projects/devhub/)

## Requirements
* PHP 5.4+
* PHP 7.4+
* [Composer](https://getcomposer.org/)
* [WP CLI](https://wp-cli.org/)

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"require" : {
"php" : ">=7.4",
"composer/installers" : "~1.0",
"composer/installers" : "^2.0",
"phpdocumentor/reflection" : "^3.0@dev",
"phpdocumentor/reflection-docblock" : "dev-release/2.x as 2.0.5",
"erusev/parsedown" : "~1.7",
Expand All @@ -42,9 +42,9 @@
"psr/log" : "~1.0"
},
"require-dev" : {
"phpunit/phpunit": "~8",
"phpunit/phpunit": "^9.6",
"spatie/phpunit-watcher": "^1.23",
"yoast/phpunit-polyfills": "^1.0"
"yoast/phpunit-polyfills": "^4.0"
},
"scripts" : {
"test": "phpunit",
Expand Down
Loading
Loading