Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/syntatis/codex
๐ชต The codebase for WordPress extensions
https://github.com/syntatis/codex
dependency-injection facades php service-container service-providers wordpress wp-hooks
Last synced: about 1 month ago
JSON representation
๐ชต The codebase for WordPress extensions
- Host: GitHub
- URL: https://github.com/syntatis/codex
- Owner: syntatis
- License: gpl-3.0
- Created: 2024-07-29T09:14:17.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T10:14:47.000Z (2 months ago)
- Last Synced: 2024-11-15T01:50:57.843Z (about 2 months ago)
- Topics: dependency-injection, facades, php, service-container, service-providers, wordpress, wp-hooks
- Language: PHP
- Homepage:
- Size: 135 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ๐ชต codex
[![ci](https://github.com/syntatis/codex/actions/workflows/ci.yml/badge.svg)](https://github.com/syntatis/codex/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/syntatis/codex/graph/badge.svg?token=9Y9PU6IOA8)](https://codecov.io/gh/syntatis/codex)
> [!NOTE]
> The project is now in beta and ready for testing. We'd love to hear your input, so feel free to report any issues or suggest enhancements.A codebase designed to build WordPress extensions with modern PHP practices.
## Why?
WordPress is a powerful platform, but while PHP has evolved over the years, WordPress development has largely stayed the same. Modern PHP practices like Autoloading with [Composer](https://getcomposer.org) and Dependency Injection aren't commonly used when building WordPress extensions. It has caused some gaps between WordPress and the rest of the PHP ecosystem.
This project aims to close the gap by providing functions, classes, and structure as the foundation to build WordPress extensions with modern PHP techniques.
## Projects
The following is a list of projects that are built on top of **Codex** as the foundation.
- ๐งช ๐ [howdy](https://github.com/syntatis/howdy): A WordPress plugin boilerplate with modern development tools, easier configuration, and an improved folder structure.
- ๐งช โจ [howdy-open-ai](https://github.com/syntatis/howdy-open-ai): A WordPress plugin boilerplate with OpenAI PHP client add-in.## Providers
Providers are classes that provide additional services in the service container.
- ๐งช ๐ [`codex-settings-provider`](https://github.com/syntatis/codex-settings-provider): Service provider for WordPress Settings API
## Inspiration
This project is inspired by the following awesome projects in the PHP ecosystem:
- [Illuminate: The Laravel Components](https://github.com/illuminate)
- [Symfony: Reusable PHP components](https://github.com/symfony)