Skip to content

The HydePHP Source Code Monorepo

License

Notifications You must be signed in to change notification settings

hydephp/develop

Folders and files

NameName
Last commit message
Last commit date
Jul 24, 2024
Jul 24, 2024
Jun 20, 2022
Jul 8, 2024
Jul 23, 2024
Jun 20, 2022
Jul 10, 2024
Jul 11, 2024
Jul 25, 2024
Jul 17, 2024
Jul 25, 2024
Jun 28, 2024
Jun 27, 2024
Oct 30, 2023
Jun 28, 2024
Apr 29, 2024
Mar 16, 2024
Apr 15, 2024
Mar 7, 2023
Jul 5, 2024
Mar 13, 2023
Mar 19, 2022
Nov 12, 2023
Jul 24, 2024
Mar 18, 2024
Jun 24, 2024
Jul 17, 2024
Jul 22, 2024
Mar 7, 2023
Mar 2, 2023
Jul 17, 2024
Jul 17, 2024
Dec 13, 2023
Jul 15, 2024
Jul 17, 2024
Dec 23, 2022
Mar 27, 2023
May 22, 2023

Repository files navigation

HydePHP - Source Code Monorepo

Contribute to the Core HydePHP Components in one place

Test & Build Framework Tests (Matrix) Hyde Tests

Test Coverage Scrutinizer Code Quality Psalm Type Coverage

Latest Version on Packagist Total Downloads on Packagist License MIT

This repository holds the source code for the HydePHP core components. If you want to create a website with Hyde, check out the HydePHP/Hyde repository.

Projects in this monorepo

Upcoming Documentation API Documentation HTML Code Coverage This project is using Percy.io for visual regression testing.

HydePHP consists of a few core components, the development of which is done in this monorepo.

The code pushed here is automatically split into separate read-only repositories for each component. The two most important components are Hyde and Framework. We also use HydeFront for frontend assets.

The Hyde package is what the end-user sees and interacts with. When creating a new HydePHP site, this is done using the Hyde project. The package contains all the necessary files to run a HydePHP site and bootstraps the entire system.

The Framework package holds most of the logic of the Hyde framework. This is where all the data models, static site generators, HydeCLI commands, Blade views, and more, are stored. Having this in a package makes it much easier to version and update using Composer.

The HydeFront package contains stylesheets and scripts to help make HydePHP sites accessible and interactive. It also includes a pre-compiled TailwindCSS file containing all the styles needed for the built-in Blade templates.

Quick reference overview

Package Monorepo path Readonly repository Package location
Hyde Root directory* hydephp/hyde hyde/hyde
Framework packages/framework hydephp/framework hyde/framework
Realtime Compiler packages/realtime-compiler hydephp/realtime-compiler hyde/realtime-compiler
Publications packages/publications hydephp/publications hyde/publications
Testing packages/testing hydephp/testing hyde/testing
UI Kit packages/ui-kit hydephp/ui-kit hyde/ui-kit
HydeFront packages/hydefront hydephp/hydefront npm@hydefront

*The Hyde/Hyde project is stored in the monorepo root and works a bit differently from the others. Before pushing to the readonly repository, we apply persisted changes in the packages/hyde directory, then remove monorepo specific files.

How the monorepo works

Changes to HydePHP including some first-party packages are made here. The changes are then pushed to the develop or master branches of the readonly repositories seen in the table above.

Releases

The versioning between the Framework and Hyde packages are linked together, meaning that if Hyde gets a major release, so must Framework, and vice versa. To make this easier, we also publish major and minor releases in the monorepo. Patch releases are not published in the monorepo, and are instead handled by the individual packages, as the changes therein are generally self-contained.

Contributing

We welcome contributions to HydePHP. Please read our contributing guidelines to learn how you can help.