https://github.com/imarc/millyard
Base classes and vendor files for the Mill4 WP Starter
https://github.com/imarc/millyard
Last synced: 5 months ago
JSON representation
Base classes and vendor files for the Mill4 WP Starter
- Host: GitHub
- URL: https://github.com/imarc/millyard
- Owner: imarc
- Created: 2025-06-05T14:15:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-13T14:56:04.000Z (6 months ago)
- Last Synced: 2026-01-13T17:17:18.006Z (6 months ago)
- Language: PHP
- Size: 118 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mill Yard
[](https://github.com/imarc/millyard/actions/workflows/tests.yml)
[](https://github.com/imarc/millyard/actions/workflows/code-quality.yml)
**Millyard** is the foundational engine behind [Mill 4, our modern WordPress starter theme](https://github.com/imarc/mill4-wp-starter-theme). While Mill 4 provides developers with a clean, opinionated starting point for building sites, **Millyard** operates behind the scenes as its core dependency, supplying the essential base classes, scaffolding tools, and shared services that power the theme's structure and capabilities. It's designed to bring consistency, flexibility, and maintainability to every project built with Mill 4. Together, they're provisioned and deployed via a custom Pantheon upstream, ensuring that all new projects begin with a robust and unified development environment from the first commit.
## Testing
This project includes a comprehensive test suite.
```bash
# Run all tests
composer test
# Run only unit tests
composer test:unit
# Run only integration tests
composer test:integration
# Generate code coverage report (requires Xdebug or PCOV)
composer test:coverage
# View coverage as text
composer test:coverage-text
```
## Code Quality
```bash
# Check code style (dry run)
composer cs-check
# Fix code style issues
composer cs-fix
```