Skip to content
Open
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
2 changes: 1 addition & 1 deletion .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ vendor
.browserslistrc
.distignore
.editorconfig
.eslintrc.js
.gitignore
.phpcs.xml.dist
.prettierrc.js
eslint.config.mjs
composer.json
composer.lock
package-lock.json
Expand Down
1 change: 0 additions & 1 deletion .eslintrc.js

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/plugin-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Run WP.org's plugin check.
#
# This file is managed in https://github.com/happyprime/projects
name: WP.org Plugin Check

on:
push:
branches:
- trunk
pull_request:
branches:
- trunk

jobs:
call-workflow:
uses: happyprime/workflows/.github/workflows/plugin-check.yml@trunk
with:
php-version: '8.3'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules
/vendor
build/**/*.LICENSE.txt
.claude/settings.local.json
17 changes: 16 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,23 @@
"license": "GPLv2-or-later",
"require-dev": {
"happyprime/coding-standards": "*",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99"
"phpcompatibility/php-compatibility": "9.99.9"
},
"repositories": [
{
"type": "package",
"package": {
"name": "phpcompatibility/php-compatibility",
"type": "phpcodesniffer-standard",
"version": "9.99.9",
"source": {
"url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
"type": "git",
"reference": "9f7142356b5674164a6f6dbe12a7a1bcc632db21"
}
}
}
],
"scripts": {
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
Expand Down
Loading
Loading