https://github.com/kisphp/phpdesignpatterns
PHP Design patterns in real world
https://github.com/kisphp/phpdesignpatterns
Last synced: 9 months ago
JSON representation
PHP Design patterns in real world
- Host: GitHub
- URL: https://github.com/kisphp/phpdesignpatterns
- Owner: kisphp
- License: mit
- Created: 2015-12-13T07:48:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-08T19:25:11.000Z (about 10 years ago)
- Last Synced: 2025-01-04T02:56:19.525Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 43.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP Desing Patterns real examples
### run Code style fixer
```bash
vendor/bin/php-cs-fixer fix src -v
```
## Creational Patterns
- Abstract Factory
- Builder
- Factory Method
- Prototype
- Singleton
## Structural Patterns
- Adapter
- Bridge
- Composite
- Decorator
- Facade
- Flyweight
- Proxy
## Behavioral Patterns
- Chain of Reponsability
- Command
- Interpretor
- Iterator
- Mediator
- Memento
- Observer
- State
- Strategy
- Template
- Visitor