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

Add Health Checks #36

Merged
merged 25 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b3b3f20
Add Health Checks
bradp Dec 3, 2024
7e384b3
Tidy up
bradp Dec 10, 2024
a39d902
Update text
bradp Dec 10, 2024
cccc5bb
Implement remaining checks
bradp Dec 10, 2024
84f195c
Comment each check
bradp Dec 10, 2024
63facc4
Disabled checks for non-merged PRs
bradp Dec 10, 2024
df09f81
Update docblock
bradp Dec 10, 2024
b1fb76c
Update text
bradp Dec 10, 2024
629d15b
Update text, remove extra PR links
bradp Dec 11, 2024
0c27530
Update HealthCheckManager to allow passing an array of url, label, an…
bradp Dec 11, 2024
9871e74
Update Health Checks with consistent punctuation, link directly to th…
bradp Dec 11, 2024
9c1ce1b
Update Health Checks with consistent punctuation, link directly to th…
bradp Jan 8, 2025
04fea84
Update Performance.php
bradp Jan 23, 2025
8dda913
Update HealthCheckManager.php
bradp Jan 23, 2025
5f381b8
Update HealthCheckManager.php
bradp Jan 23, 2025
5010756
Update HealthChecks.php
bradp Jan 23, 2025
1bc16b6
Update Performance.php
bradp Jan 23, 2025
e98e1a0
Merge branch 'main' into feature/health-checks
bradp Jan 23, 2025
bc5dbc2
Update Performance.php
bradp Jan 23, 2025
8e3850e
Update HealthChecks.php
bradp Jan 23, 2025
c0043f0
Fix method name
bradp Jan 23, 2025
3430f68
fix method name
bradp Jan 23, 2025
697409a
Refactor Health Checks to use an abstract class and individual classe…
bradp Jan 27, 2025
791c80b
Add PHPUnit bootstrap and configuration files, add Health Check tests.
bradp Jan 27, 2025
aee37f1
Rename i18n namespace
arunshenoy99 Jan 29, 2025
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
12 changes: 11 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@
]
}
],

"scripts": {
"test": [
"phpunit --bootstrap tests/phpunit/bootstrap.php"
]
},
"scripts-descriptions": {
"test": "Run phpunit tests"
},
"require": {
"newfold-labs/wp-module-context": "^1.0",
"wp-forge/collection": "^1.0.2",
Expand All @@ -36,7 +45,8 @@
"newfold-labs/wp-module-installer": "^1.3.0"
},
"require-dev": {
"newfold-labs/wp-php-standards": "^1.2.4"
"newfold-labs/wp-php-standards": "^1.2.4",
"10up/wp_mock": "^1.0"
},
"config": {
"allow-plugins": {
Expand Down
Loading