Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DesignPatternsPHP/DesignPatternsPHP
Sample code for several design patterns in PHP 8.x
https://github.com/DesignPatternsPHP/DesignPatternsPHP
code-examples design-pattern design-patterns designpatternsphp modern-php oop php php8 phpunit
Last synced: about 2 months ago
JSON representation
Sample code for several design patterns in PHP 8.x
- Host: GitHub
- URL: https://github.com/DesignPatternsPHP/DesignPatternsPHP
- Owner: DesignPatternsPHP
- License: mit
- Created: 2011-08-22T05:24:31.000Z (over 13 years ago)
- Default Branch: main
- Last Pushed: 2024-06-11T05:37:28.000Z (6 months ago)
- Last Synced: 2024-10-14T10:05:02.777Z (about 2 months ago)
- Topics: code-examples, design-pattern, design-patterns, designpatternsphp, modern-php, oop, php, php8, phpunit
- Language: PHP
- Homepage:
- Size: 5.91 MB
- Stars: 21,855
- Watchers: 1,203
- Forks: 4,550
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-projects - design patterns php
- awesome-php - Design Patterns PHP - A repository of software patterns implemented in PHP. (Table of Contents / Architectural)
- awesome-php-cn - Design Patterns PHP - 用PHP实现存储库的软件模式. (目录 / 建筑 Architectural)
- awesome-projects - Design Patterns PHP - A repository of software patterns implemented in PHP. (PHP / Architectural)
- awesome-php - Design Patterns PHP - A repository of software patterns implemented in PHP. (Table of Contents / Architectural)
- StarryDivineSky - DesignPatternsPHP/DesignPatternsPHP
README
# DesignPatternsPHP
[![Build Status](https://github.com/DesignPatternsPHP/DesignPatternsPHP/workflows/CI/badge.svg?branch=main)](https://github.com/DesignPatternsPHP/DesignPatternsPHP/actions)
[![Documentation Status](https://readthedocs.org/projects/designpatternsphp/badge/?version=latest)](https://designpatternsphp.readthedocs.io/?badge=latest)[Read the Docs of DesignPatternsPHP](http://designpatternsphp.readthedocs.org)
or [Download as PDF/Epub](https://readthedocs.org/projects/designpatternsphp/downloads/)This is a collection of known design patterns and some sample codes on how to implement them in PHP. Every pattern has a small list of examples.
I think the problem with patterns is that often people do know them but don't know when to apply which.
## Installation
You should look at and run the tests to see what happens in the example.
To do this, you should install dependencies with `Composer` first:```bash
$ composer install
```Read more about how to install and use `Composer` on your local machine [here](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx).
To run the tests use `phpunit`:
```bash
$ ./vendor/bin/phpunit
```## Using Docker (optional)
You can optionally build and browse the documentation using [Docker for Mac, Windows or Linux](https://docs.docker.com/compose/install/).
Just run:
```bash
$ docker-compose up --build
```Go to [http://localhost:8080/](http://localhost:8080/) to read the generated documentation.
If you want to localize your documentation you can pass the locale as an argument to the docker build:
```bash
$ docker-compose build --build-arg language=de
$ docker-compose up
```## Patterns
The patterns can be structured in roughly three different categories. Please click on the [:notebook:](http://en.wikipedia.org/wiki/Software_design_pattern) for a full explanation of the pattern on Wikipedia.
### [Creational](Creational)
* [AbstractFactory](Creational/AbstractFactory) [:notebook:](http://en.wikipedia.org/wiki/Abstract_factory_pattern)
* [Builder](Creational/Builder) [:notebook:](http://en.wikipedia.org/wiki/Builder_pattern)
* [FactoryMethod](Creational/FactoryMethod) [:notebook:](http://en.wikipedia.org/wiki/Factory_method_pattern)
* [Pool](Creational/Pool) [:notebook:](http://en.wikipedia.org/wiki/Object_pool_pattern)
* [Prototype](Creational/Prototype) [:notebook:](http://en.wikipedia.org/wiki/Prototype_pattern)
* [SimpleFactory](Creational/SimpleFactory)
* [Singleton](Creational/Singleton) [:notebook:](http://en.wikipedia.org/wiki/Singleton_pattern)
* [StaticFactory](Creational/StaticFactory)### [Structural](Structural)
* [Adapter](Structural/Adapter) [:notebook:](http://en.wikipedia.org/wiki/Adapter_pattern)
* [Bridge](Structural/Bridge) [:notebook:](http://en.wikipedia.org/wiki/Bridge_pattern)
* [Composite](Structural/Composite) [:notebook:](http://en.wikipedia.org/wiki/Composite_pattern)
* [DataMapper](Structural/DataMapper) [:notebook:](http://en.wikipedia.org/wiki/Data_mapper_pattern)
* [Decorator](Structural/Decorator) [:notebook:](http://en.wikipedia.org/wiki/Decorator_pattern)
* [DependencyInjection](Structural/DependencyInjection) [:notebook:](http://en.wikipedia.org/wiki/Dependency_injection)
* [Facade](Structural/Facade) [:notebook:](http://en.wikipedia.org/wiki/Facade_pattern)
* [FluentInterface](Structural/FluentInterface) [:notebook:](http://en.wikipedia.org/wiki/Fluent_interface)
* [Flyweight](Structural/Flyweight) [:notebook:](https://en.wikipedia.org/wiki/Flyweight_pattern)
* [Proxy](Structural/Proxy) [:notebook:](http://en.wikipedia.org/wiki/Proxy_pattern)
* [Registry](Structural/Registry) [:notebook:](http://en.wikipedia.org/wiki/Service_locator_pattern)### [Behavioral](Behavioral)
* [ChainOfResponsibilities](Behavioral/ChainOfResponsibilities) [:notebook:](http://en.wikipedia.org/wiki/Chain_of_responsibility_pattern)
* [Command](Behavioral/Command) [:notebook:](http://en.wikipedia.org/wiki/Command_pattern)
* [Interpreter](Behavioral/Interpreter) [:notebook:](https://en.wikipedia.org/wiki/Interpreter_pattern)
* [Iterator](Behavioral/Iterator) [:notebook:](http://en.wikipedia.org/wiki/Iterator_pattern)
* [Mediator](Behavioral/Mediator) [:notebook:](http://en.wikipedia.org/wiki/Mediator_pattern)
* [Memento](Behavioral/Memento) [:notebook:](http://en.wikipedia.org/wiki/Memento_pattern)
* [NullObject](Behavioral/NullObject) [:notebook:](http://en.wikipedia.org/wiki/Null_Object_pattern)
* [Observer](Behavioral/Observer) [:notebook:](http://en.wikipedia.org/wiki/Observer_pattern)
* [Specification](Behavioral/Specification) [:notebook:](http://en.wikipedia.org/wiki/Specification_pattern)
* [State](Behavioral/State) [:notebook:](http://en.wikipedia.org/wiki/State_pattern)
* [Strategy](Behavioral/Strategy) [:notebook:](http://en.wikipedia.org/wiki/Strategy_pattern)
* [TemplateMethod](Behavioral/TemplateMethod) [:notebook:](http://en.wikipedia.org/wiki/Template_method_pattern)
* [Visitor](Behavioral/Visitor) [:notebook:](http://en.wikipedia.org/wiki/Visitor_pattern)### [More](More)
* [EAV](More/EAV) [:notebook:](https://en.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value_model)
* [Repository](More/Repository)
* [ServiceLocator](More/ServiceLocator) [:notebook:](http://en.wikipedia.org/wiki/Service_locator_pattern)## Localization & Supported Languages
The following languages are currently available. However not all are actively supported.
The current policy is: if there are no native-speaking maintainers we cannot support the given language.
We will still leave the translation as is but we will not update it as the base (English) changes.
The table below list which language version is considered "supported" and who maintains it.We're sorry. We would love to maintain them but it is not possible for us. So if you would like to take care
of one or more languages - contact us.| Code | Language | Documentation | Actively Supported? | Maintainer |
| ------------------|-------------|------|-----------------------|------------|
| en | English | [Docs :notebook:](https://designpatternsphp.readthedocs.io/en/latest/) | YES | -- |
| de | German | [Docs :notebook:](https://designpatternsphp.readthedocs.io/de/latest/) | NO | - |
| ca | Catalan | [Docs :notebook:](https://designpatternsphp.readthedocs.io/ca/latest/) | NO | - |
| zh_CN | Chinese | [Docs :notebook:](https://designpatternsphp.readthedocs.io/zh_CN/latest/) | NO | - |
| nl | Dutch | [Docs :notebook:](https://designpatternsphp.readthedocs.io/nl/latest/) | NO | - |
| bg | Bulgarian | [Docs :notebook:](https://designpatternsphp.readthedocs.io/bg/latest/) | YES | -- |
| ja | Japanese | [Docs :notebook:](https://designpatternsphp.readthedocs.io/ja/latest/) | NO | - |
| pl | Polish | [Docs :notebook:](https://designpatternsphp.readthedocs.io/pl/latest/) | NO | - |
| pt_BR | Portuguese-Brazil | [Docs :notebook:](https://designpatternsphp.readthedocs.io/pt_BR/latest/) | NO | - |
| ru | Russian | [Docs :notebook:](https://designpatternsphp.readthedocs.io/ru/latest/) | NO | - |
| es | Spanish | [Docs :notebook:](https://designpatternsphp.readthedocs.io/es/latest/) | NO | - |
| es_MX | Spanish-Mexican | [Docs :notebook:](https://designpatternsphp.readthedocs.io/es_MX/latest/) | NO | - |
| tr | Turkish | [Docs :notebook:](https://designpatternsphp.readthedocs.io/tr/latest/) | NO | - |
| fr | French | [Docs :notebook:](https://designpatternsphp.readthedocs.io/fr/latest/) | NO | - |
| it | Italian | [Docs :notebook:](https://designpatternsphp.readthedocs.io/it/latest/) | NO | - |
| uk | Ukrainian | [Docs :notebook:](https://designpatternsphp.readthedocs.io/uk/latest/) | NO | - |