Skip to content

Commit 1e57c75

Browse files
authored
✨ Implement Simple Dashboard Widget (#31)
* refactor(standardisation): Refactor option name * feat(dashboard): Add simple widget * test(standardisation): Add test for option migration * doc: Update changelog and plugin version * feat: Add commitizen config future updates * doc: Add missing changelog information * refactor: Remove not needed phpcs:ignore
1 parent 1da9da3 commit 1e57c75

17 files changed

+2598
-113
lines changed

.cz.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"commitizen": {
3+
"name": "cz_conventional_commits",
4+
"tag_format": "$version",
5+
"version_scheme": "semver",
6+
"version": "0.8.0",
7+
"update_changelog_on_bump": true,
8+
"version_files": [
9+
"wp-umami.php",
10+
"readme.txt:Stable tag: $version",
11+
"readme.md:**Stable tag:** $version"
12+
]
13+
}
14+
}

.distignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ integrate-umami.zip
99
.gitignore
1010

1111
/node_modules
12+
/playwright-report
1213
playwright.config.js
1314
package-lock.json
1415
package.json

.github/workflows/playwright.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
wpVersion: [ '6.4', '6.5', '6.6' ]
12-
phpVersion: [ '8.0', '8.1', '8.2' ]
11+
wpVersion: [ '6.5', '6.6', '6.7' ]
12+
phpVersion: [ '8.1', '8.2', '8.3' ]
1313
fail-fast: false
1414
steps:
1515
- uses: actions/checkout@v4

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=7.0"
13+
"php": ">=7.4"
1414
},
1515
"require-dev": {
1616
"squizlabs/php_codesniffer": "*",
@@ -35,6 +35,7 @@
3535
"post-install-cmd": [
3636
"@install-codestandards"
3737
],
38-
"php:lint": "./vendor/bin/phpcs ."
38+
"php:lint": "./vendor/bin/phpcs . -s",
39+
"php:lint-fix": "./vendor/bin/phpcbf ."
3940
}
4041
}

composer.lock

+233-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)