diff --git a/README.md b/README.md index 28a3adb..e625b56 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # phpdp - + > Sample code for several design patterns in PHP. @@ -81,7 +81,7 @@ composer require kuriv/phpdp [build-image]: https://api.travis-ci.org/kuriv/phpdp.svg?branch=master&status=passed "build" [build-url]: https://github.com/kuriv/phpdp "build" -[version-image]: https://img.shields.io/badge/version-v1.0.2-blue "version" +[version-image]: https://img.shields.io/badge/version-v1.0.3-blue "version" [version-url]: https://github.com/kuriv/phpdp "version" [license-image]: https://img.shields.io/badge/license-MIT-green "license" [license-url]: https://github.com/kuriv/phpdp "license" \ No newline at end of file diff --git a/phpdp.png b/phpdp.png deleted file mode 100644 index f4648ba..0000000 Binary files a/phpdp.png and /dev/null differ diff --git a/phpdp.svg b/phpdp.svg new file mode 100644 index 0000000..0e49998 --- /dev/null +++ b/phpdp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/Behavioral/README.md b/src/Behavioral/README.md index 7737884..bb5917f 100644 --- a/src/Behavioral/README.md +++ b/src/Behavioral/README.md @@ -1,9 +1,5 @@ # Behavioral -> `Behavioral` design patterns are design patterns that identify common communication patterns between objects and realize these patterns. By doing so, these patterns increase flexibility in carrying out this communication. - -## Contents - * [ChainOfResponsibilities](ChainOfResponsibilities) * [Command](Command) * [Iterator](Iterator) diff --git a/src/Creational/README.md b/src/Creational/README.md index 554c4d9..16458f0 100644 --- a/src/Creational/README.md +++ b/src/Creational/README.md @@ -1,9 +1,5 @@ # Creational -> `Creational` design patterns are design patterns that deal with object creation mechanisms, trying to create objects in a manner suitable to the situation. The basic form of object creation could result in design problems or added complexity to the design. `Creational` design patterns solve this problem by somehow controlling this object creation. - -## Contents - * [AbstractFactory](AbstractFactory) * [Builder](Builder) * [FactoryMethod](FactoryMethod) diff --git a/src/Structural/README.md b/src/Structural/README.md index dae9837..af8d0ee 100644 --- a/src/Structural/README.md +++ b/src/Structural/README.md @@ -1,9 +1,5 @@ # Structural -> `Structural` design patterns are design patterns that ease the design by identifying a simple way to realize relationships between entities. - -## Contents - * [Adapter](Adapter) * [Bridge](Bridge) * [Composite](Composite)