{"id":51888673,"url":"https://github.com/ahegyes/wordpress-plugins","last_synced_at":"2026-07-26T01:01:50.290Z","repository":{"id":369627065,"uuid":"1228156762","full_name":"ahegyes/wordpress-plugins","owner":"ahegyes","description":"DWS v2 WordPress plugins — monorepo for internal-comments, linked-orders-for-woocommerce, locked-payment-methods-for-woocommerce. Auto-splits to wp-* / wc-* mirrors.","archived":false,"fork":false,"pushed_at":"2026-07-06T06:15:47.000Z","size":1488,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":0,"default_branch":"trunk","last_synced_at":"2026-07-06T08:08:09.081Z","etag":null,"topics":["dws-framework","monorepo","php","wordpress","wordpress-plugin","wordpress-plugin-development"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ahegyes.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-03T17:07:18.000Z","updated_at":"2026-06-29T11:44:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ahegyes/wordpress-plugins","commit_stats":null,"previous_names":["ahegyes/wordpress-plugins"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ahegyes/wordpress-plugins","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahegyes%2Fwordpress-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahegyes%2Fwordpress-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahegyes%2Fwordpress-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahegyes%2Fwordpress-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahegyes","download_url":"https://codeload.github.com/ahegyes/wordpress-plugins/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahegyes%2Fwordpress-plugins/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35897093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-25T02:00:06.922Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dws-framework","monorepo","php","wordpress","wordpress-plugin","wordpress-plugin-development"],"created_at":"2026-07-26T01:01:49.599Z","updated_at":"2026-07-26T01:01:50.280Z","avatar_url":"https://github.com/ahegyes.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DWS WordPress Plugins\n\nMonorepo for the v2 DWS WordPress plugins. Each plugin under `plugins/\u003cname\u003e/` is fully self-contained (own `composer.json`, scoping prefix, scoped framework + PHP-DI) and is split-published to its own GitHub mirror via `splitsh-lite`.\n\n| Plugin                                                                                       | Mirror                                                                              | Status |\n|----------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|--------|\n| [`internal-comments`](./plugins/internal-comments)                                           | [`wp-internal-comments`](https://github.com/ahegyes/wp-internal-comments)           | shell  |\n| [`linked-orders-for-woocommerce`](./plugins/linked-orders-for-woocommerce)                   | [`wc-linked-orders`](https://github.com/ahegyes/wc-linked-orders)                   | shell  |\n| [`locked-payment-methods-for-woocommerce`](./plugins/locked-payment-methods-for-woocommerce) | [`wc-locked-payment-methods`](https://github.com/ahegyes/wc-locked-payment-methods) | shell  |\n\n## Layout\n\n```\nwordpress-plugins/\n├── composer.json                # Monorepo orchestration scripts (plugins:install, plugins:lint, ...)\n├── package.json                 # Cross-plugin wp-env + Playwright tooling\n├── playwright.config.js         # Cross-plugin E2E config (port 8820)\n├── .wp-env.tests.json           # Cross-plugin WordPress (port 8820, all 3 + WC mounted)\n├── plugins/\n│   ├── internal-comments/                          (port 8821)\n│   ├── linked-orders-for-woocommerce/              (port 8822)\n│   └── locked-payment-methods-for-woocommerce/     (port 8823)\n├── tests/\n│   ├── e2e/                     # Cross-plugin Playwright specs\n│   └── Fixtures/multi-plugin-smoke/   # Fixture mounted into wp-env for smoke testing\n├── changelog/                   # Monorepo-level changelog fragments\n└── .github/workflows/           # quality, tests, split-plugins, codeql\n```\n\n## Working on a single plugin\n\nThe split-published mirrors are runnable standalone — clone a mirror and you have the full plugin with no monorepo dependencies. The same workflow works in-monorepo from the plugin's directory:\n\n```sh\ncd plugins/internal-comments\ncomposer packages-install   # deps + scoping → dependencies/\nnpm install                 # wp-env + Playwright\nnpm run wp-env:start        # WordPress on the plugin's own port\n\ncomposer test:unit\ncomposer test:integration\nnpm run test:e2e\n\nnpm run wp-env:stop\n```\n\n## Working across all plugins\n\n```sh\n# From the monorepo root\nnpm run install:all                   # composer + npm install across root + all 3 plugins\nnpm run wp-env:start                  # WordPress with all 3 plugins + WC mounted (port 8820)\n\n# Shared env — all 3 plugins active together (catches cross-plugin pollution)\nnpm run test:integration              # PHPUnit Integration across all 3 in shared env\nnpm run test:e2e                      # Cross-plugin Playwright suite (tests/e2e/)\n\n# Fan-out — each plugin in its own isolated env (mirrors what split-published mirrors run in CI)\ncomposer plugins:test:integration     # PHPUnit Integration, per-plugin isolated env\nnpm run plugins:test:e2e              # Playwright, per-plugin isolated env\n\ncomposer plugins:quality-check        # lint:php + test:unit across all 3 (no Docker)\n\nnpm run wp-env:stop\n```\n\n## Port scheme\n\nWorkspace-wide convention (880X = framework, 881X = plugin templates, 882X = real plugins; 8888 + 8889 reserved for wp-env defaults):\n\n- `8801` — `wordpress-framework` monorepo\n- `8811` — `wordpress-plugin-template`\n- `8820` — `wordpress-plugins` monorepo (cross-plugin shared env)\n- `8821` — `internal-comments`\n- `8822` — `linked-orders-for-woocommerce`\n- `8823` — `locked-payment-methods-for-woocommerce`\n\n## Releases\n\nPer-plugin releases use `composer changelog:write` inside the plugin's directory; the next splitsh-lite run propagates the tag to the mirror, where `release.yml` (deferred) will publish to wp.org. Monorepo-level changelog tracks scaffold-only changes.\n\nSee [`CONTRIBUTING.md`](./CONTRIBUTING.md) for the full workflow.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahegyes%2Fwordpress-plugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahegyes%2Fwordpress-plugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahegyes%2Fwordpress-plugins/lists"}