SlideShare uma empresa Scribd logo
1 de 51
Baixar para ler offline
Principles of PHP Package Design
Objectoriented design for packages
Matthias Noback - Noback's Office
DomCode, first monthly meeting - 7/28/2014
First monthly meeting of DomCode
2/52
Also: congratulations to SweetlakePHP
3/52
Matthias Noback
Noback's Office
PHP developer
Writer/speaker
Proud father
·
·
·
4/52
Blog
php-and-symfony.matthiasnoback.nl
5/52
A Year With Symfony
leanpub.com/a-year-with-symfony
6/52
Tight coupling
Coupling to a framework
7/52
Code
8/52
Squiggly lines
9/52
Code
10/52
Packages
There are many different kinds
11/52
Class design
12/52
Package design
Nothing?
butunclebob.com
13/52
Principles of PHP Package Design
leanpub.com/principles-of-php-package-design
14/52
Package design
Cohesion
15/52
Package design
Coupling
16/52
A - Cohesion principles
Perspective: the package in isolation
17/52
1 - The Release Reuse Equivalence Principle
The granule of reuse is the granule of release
18/52
1 - The Release Reuse Equivalence Principle
Version control and hosting
Composer package definition
Meta-files
Auto-loading
·
·
·
·
Semantic versioning
Quality control
·
Branches
Tags
Backward compatibility
-
-
-
·
19/52
1 - The Release Reuse Equivalence Principle
If you don't have the time to turn your reusable code into a proper package...
Don't release it.
20/52
2- The Common Reuse Principle
Classes that are used together are packaged together
If you use one class of a package,
you will use all its other classes too.
21/52
2- The Common Reuse Principle
Smell: Feature strata
22/52
2- The Common Reuse Principle
Example of feature strata: the Symfony Security Component
23/52
2- The Common Reuse Principle
Smell: Classes with different dependencies
24/52
2- The Common Reuse Principle
Example of different dependencies: Gaufrette
25/52
2- The Common Reuse Principle
Different dependencies: Gaufrette
{
"name":"knplabs/gaufrette",
...
"suggest":{
"knplabs/knp-gaufrette-bundle":"tousewithSymfony2",
"dropbox-php/dropbox-php":"tousetheDropboxadapter",
"rackspace/php-opencloud":"touseOpencloudadapter",
"herzult/php-ssh":"touseSFtpadapter",
"phpseclib/phpseclib":"tousePhpseclibSftpadapter",
"aws/aws-sdk-php":"tousetheAmazonS3adapter",
"amazonwebservices/aws-sdk-for-php":"tousethelegacyAmazonS3adapters",
"doctrine/dbal":"tousetheDoctrineDBALadapter",
"microsoft/windowsazure":"touseMicrosoftAzureBlobStorageadapter",
"ext-zip":"tousetheZipadapter",
"ext-apc":"tousetheAPCadapter",
...
},
...
} 26/52
2 - The Common Reuse Principle
Leszek Prabucki's response
27/52
3 - The Common Closure Principle
Classes that change together are packaged together
28/52
3 - The Common Closure Principle
Reasons for change
The application's features change
The business rules change
The web framework's best practices change
The persistence library's configuration changes
...
·
·
·
·
·
29/52
3 - The Common Closure Principle
Smell: code for multiple application layers
Web User Interface
Command-line interface
Model
Infrastructure services
·
·
·
·
30/52
B - Coupling principles
Perspective: the package in relation to other packages
31/52
4 - The Acyclic Dependencies Principle
The dependency graph of packages must have no cycles
32/52
4 - The Acyclic Dependencies Principle
33/52
Stability
Something is stable if it's resistant to change.
34/52
5 - The Stable Dependencies Principle
An irresponsible package
35/52
5 - The Stable Dependencies Principle
A dependent package
36/52
5 - The Stable Dependencies Principle
An instable package: irresponsible and dependent
37/52
5 - The Stable Dependencies Principle
A responsible package
38/52
5 - The Stable Dependencies Principle
An independent package
39/52
5 - The Stable Dependencies Principle
A stable package: responsible and independent
40/52
5 - The Stable Dependencies Principle
Depend in the direction of stability
41/52
5 - The Stable Dependencies Principle
Counter example
42/52
6 - The Stable Abstractions Principle
What is more likely to change?
Something concrete or something abstract?
A class or an interface?
·
·
43/52
6 - The Stable Abstractions Principle
Abstractness should increase with stability
44/52
Summary
Reuse/release equivalence principle
Common reuse principle
Common closure principle
Acyclic dependencies principle
Stable dependencies principle
Stable abstractions principle
·
Reuse only code that you can release as a product.-
·
All code in a package is reused at the same time.-
·
Code in a package only changes for a few reasons.-
·
No cycles in the dependency graph.-
·
Only depend on more stable packages.-
·
More stable packages are also more abstract.-
45/52
Word of advice
You can't maximize them all at the same time.
Keep them in mind while you are working on a package.
46/52
Principles of PHP Package Design
leanpub.com/principles-of-php-package-design
I'm impressed. — Robert C. Martin
47/52
Principles of PHP Package Design
Get a 10 dollar discount:
http://leanpub.com/principles-of-php-package-design/c/domcode
48/52
Questions?
feedback joind.in/11580
twitter @matthiasnoback
leanpub leanpub.com/principles-of-php-package-design
49/52
Image courtesy
Clean Coders
GitHub
BitBucket
Packagist
PoEAA
But Uncle Bob
Robert Martin
·
·
·
·
·
·
·
50/52
52/52

Mais conteĂșdo relacionado

Destaque

Aseptic packaging
Aseptic packagingAseptic packaging
Aseptic packaging
920811115138
 
Canning ppt.
Canning ppt.Canning ppt.
Canning ppt.
bingocoffee
 
Fruit Juice Factory. How to Manufacture Fruit Juice
Fruit Juice Factory. How to Manufacture Fruit JuiceFruit Juice Factory. How to Manufacture Fruit Juice
Fruit Juice Factory. How to Manufacture Fruit Juice
Ajjay Kumar Gupta
 

Destaque (15)

Types of Folding Carton
Types of Folding CartonTypes of Folding Carton
Types of Folding Carton
 
Aseptic packaging
Aseptic packagingAseptic packaging
Aseptic packaging
 
Principles of Package Design FOSDEM 2015
Principles of Package Design FOSDEM 2015Principles of Package Design FOSDEM 2015
Principles of Package Design FOSDEM 2015
 
Design Fundamentals for Developers
Design Fundamentals for DevelopersDesign Fundamentals for Developers
Design Fundamentals for Developers
 
Aseptic packaging
Aseptic packagingAseptic packaging
Aseptic packaging
 
Map
MapMap
Map
 
PACKAGE DESIGN (Intro to GD, wk 12)
PACKAGE DESIGN (Intro to GD, wk 12)PACKAGE DESIGN (Intro to GD, wk 12)
PACKAGE DESIGN (Intro to GD, wk 12)
 
Aseptic packaging
Aseptic packagingAseptic packaging
Aseptic packaging
 
Modified Atmosphere Packaging
Modified Atmosphere PackagingModified Atmosphere Packaging
Modified Atmosphere Packaging
 
Closures ppt
Closures pptClosures ppt
Closures ppt
 
Can manufacturing
Can manufacturingCan manufacturing
Can manufacturing
 
Food Packaging (Food Processing Technology)
Food Packaging (Food Processing Technology)Food Packaging (Food Processing Technology)
Food Packaging (Food Processing Technology)
 
Canning ppt.
Canning ppt.Canning ppt.
Canning ppt.
 
Blister & strip packaging
Blister & strip packaging Blister & strip packaging
Blister & strip packaging
 
Fruit Juice Factory. How to Manufacture Fruit Juice
Fruit Juice Factory. How to Manufacture Fruit JuiceFruit Juice Factory. How to Manufacture Fruit Juice
Fruit Juice Factory. How to Manufacture Fruit Juice
 

Semelhante a Principles of PHP Package Design - DomCode, first monthly meeting

Principles of PHP Package Design (for AmsterdamPHP)
Principles of PHP Package Design (for AmsterdamPHP)Principles of PHP Package Design (for AmsterdamPHP)
Principles of PHP Package Design (for AmsterdamPHP)
Matthias Noback
 

Semelhante a Principles of PHP Package Design - DomCode, first monthly meeting (6)

Principles of PHP Package Design - Dutch PHP Conference 2014
Principles of PHP Package Design - Dutch PHP Conference 2014Principles of PHP Package Design - Dutch PHP Conference 2014
Principles of PHP Package Design - Dutch PHP Conference 2014
 
Principles of PHP Package Design - Laracon Europe (Amsterdam) 2014
Principles of PHP Package Design - Laracon Europe (Amsterdam) 2014Principles of PHP Package Design - Laracon Europe (Amsterdam) 2014
Principles of PHP Package Design - Laracon Europe (Amsterdam) 2014
 
Principles of PHP Package Design - Elcodi Community Day
Principles of PHP Package Design - Elcodi Community DayPrinciples of PHP Package Design - Elcodi Community Day
Principles of PHP Package Design - Elcodi Community Day
 
Dutch Symfony Meetup - Principles of PHP Package Design
Dutch Symfony Meetup - Principles of PHP Package DesignDutch Symfony Meetup - Principles of PHP Package Design
Dutch Symfony Meetup - Principles of PHP Package Design
 
Principles of PHP Package Design (for AmsterdamPHP)
Principles of PHP Package Design (for AmsterdamPHP)Principles of PHP Package Design (for AmsterdamPHP)
Principles of PHP Package Design (for AmsterdamPHP)
 
Principles of Package Design (PHPCon Poland 2015)
Principles of Package Design (PHPCon Poland 2015)Principles of Package Design (PHPCon Poland 2015)
Principles of Package Design (PHPCon Poland 2015)
 

Mais de Matthias Noback

Advanced web application architecture - PHP Barcelona
Advanced web application architecture  - PHP BarcelonaAdvanced web application architecture  - PHP Barcelona
Advanced web application architecture - PHP Barcelona
Matthias Noback
 
A testing strategy for hexagonal applications
A testing strategy for hexagonal applicationsA testing strategy for hexagonal applications
A testing strategy for hexagonal applications
Matthias Noback
 

Mais de Matthias Noback (20)

Rector fireside chat - PHPMiNDS meetup
Rector fireside chat - PHPMiNDS meetupRector fireside chat - PHPMiNDS meetup
Rector fireside chat - PHPMiNDS meetup
 
Service abstractions - Part 1: Queries
Service abstractions - Part 1: QueriesService abstractions - Part 1: Queries
Service abstractions - Part 1: Queries
 
Hexagonal Symfony - SymfonyCon Amsterdam 2019
Hexagonal Symfony - SymfonyCon Amsterdam 2019Hexagonal Symfony - SymfonyCon Amsterdam 2019
Hexagonal Symfony - SymfonyCon Amsterdam 2019
 
Advanced web application architecture - PHP Barcelona
Advanced web application architecture  - PHP BarcelonaAdvanced web application architecture  - PHP Barcelona
Advanced web application architecture - PHP Barcelona
 
A testing strategy for hexagonal applications
A testing strategy for hexagonal applicationsA testing strategy for hexagonal applications
A testing strategy for hexagonal applications
 
Advanced web application architecture - Talk
Advanced web application architecture - TalkAdvanced web application architecture - Talk
Advanced web application architecture - Talk
 
DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...
DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...
DPC 2019, Amsterdam: Beyond design patterns and principles - writing good OO ...
 
Layers, ports and adapters
Layers, ports and adaptersLayers, ports and adapters
Layers, ports and adapters
 
Beyond design principles and patterns (muCon 2019 edition)
Beyond design principles and patterns (muCon 2019 edition)Beyond design principles and patterns (muCon 2019 edition)
Beyond design principles and patterns (muCon 2019 edition)
 
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
Brutal refactoring, lying code, the Churn, and other emotional stories from L...Brutal refactoring, lying code, the Churn, and other emotional stories from L...
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
 
Advanced web application architecture Way2Web
Advanced web application architecture Way2WebAdvanced web application architecture Way2Web
Advanced web application architecture Way2Web
 
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
Brutal refactoring, lying code, the Churn, and other emotional stories from L...Brutal refactoring, lying code, the Churn, and other emotional stories from L...
Brutal refactoring, lying code, the Churn, and other emotional stories from L...
 
Beyond Design Principles and Patterns
Beyond Design Principles and PatternsBeyond Design Principles and Patterns
Beyond Design Principles and Patterns
 
Building Autonomous Services
Building Autonomous ServicesBuilding Autonomous Services
Building Autonomous Services
 
Advanced Application Architecture Symfony Live Berlin 2018
Advanced Application Architecture Symfony Live Berlin 2018Advanced Application Architecture Symfony Live Berlin 2018
Advanced Application Architecture Symfony Live Berlin 2018
 
Designing for Autonomy
Designing for AutonomyDesigning for Autonomy
Designing for Autonomy
 
Docker workshop
Docker workshopDocker workshop
Docker workshop
 
Docker swarm workshop
Docker swarm workshopDocker swarm workshop
Docker swarm workshop
 
Docker compose workshop
Docker compose workshopDocker compose workshop
Docker compose workshop
 
Building autonomous services
Building autonomous servicesBuilding autonomous services
Building autonomous services
 

Último

Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
masabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 

Último (20)

Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] đŸ„ Women's Abortion Clinic in T...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 

Principles of PHP Package Design - DomCode, first monthly meeting

  • 1. Principles of PHP Package Design Objectoriented design for packages Matthias Noback - Noback's Office DomCode, first monthly meeting - 7/28/2014
  • 2. First monthly meeting of DomCode 2/52
  • 3. Also: congratulations to SweetlakePHP 3/52
  • 4. Matthias Noback Noback's Office PHP developer Writer/speaker Proud father · · · 4/52
  • 6. A Year With Symfony leanpub.com/a-year-with-symfony 6/52
  • 7. Tight coupling Coupling to a framework 7/52
  • 11. Packages There are many different kinds 11/52
  • 14. Principles of PHP Package Design leanpub.com/principles-of-php-package-design 14/52
  • 17. A - Cohesion principles Perspective: the package in isolation 17/52
  • 18. 1 - The Release Reuse Equivalence Principle The granule of reuse is the granule of release 18/52
  • 19. 1 - The Release Reuse Equivalence Principle Version control and hosting Composer package definition Meta-files Auto-loading · · · · Semantic versioning Quality control · Branches Tags Backward compatibility - - - · 19/52
  • 20. 1 - The Release Reuse Equivalence Principle If you don't have the time to turn your reusable code into a proper package... Don't release it. 20/52
  • 21. 2- The Common Reuse Principle Classes that are used together are packaged together If you use one class of a package, you will use all its other classes too. 21/52
  • 22. 2- The Common Reuse Principle Smell: Feature strata 22/52
  • 23. 2- The Common Reuse Principle Example of feature strata: the Symfony Security Component 23/52
  • 24. 2- The Common Reuse Principle Smell: Classes with different dependencies 24/52
  • 25. 2- The Common Reuse Principle Example of different dependencies: Gaufrette 25/52
  • 26. 2- The Common Reuse Principle Different dependencies: Gaufrette { "name":"knplabs/gaufrette", ... "suggest":{ "knplabs/knp-gaufrette-bundle":"tousewithSymfony2", "dropbox-php/dropbox-php":"tousetheDropboxadapter", "rackspace/php-opencloud":"touseOpencloudadapter", "herzult/php-ssh":"touseSFtpadapter", "phpseclib/phpseclib":"tousePhpseclibSftpadapter", "aws/aws-sdk-php":"tousetheAmazonS3adapter", "amazonwebservices/aws-sdk-for-php":"tousethelegacyAmazonS3adapters", "doctrine/dbal":"tousetheDoctrineDBALadapter", "microsoft/windowsazure":"touseMicrosoftAzureBlobStorageadapter", "ext-zip":"tousetheZipadapter", "ext-apc":"tousetheAPCadapter", ... }, ... } 26/52
  • 27. 2 - The Common Reuse Principle Leszek Prabucki's response 27/52
  • 28. 3 - The Common Closure Principle Classes that change together are packaged together 28/52
  • 29. 3 - The Common Closure Principle Reasons for change The application's features change The business rules change The web framework's best practices change The persistence library's configuration changes ... · · · · · 29/52
  • 30. 3 - The Common Closure Principle Smell: code for multiple application layers Web User Interface Command-line interface Model Infrastructure services · · · · 30/52
  • 31. B - Coupling principles Perspective: the package in relation to other packages 31/52
  • 32. 4 - The Acyclic Dependencies Principle The dependency graph of packages must have no cycles 32/52
  • 33. 4 - The Acyclic Dependencies Principle 33/52
  • 34. Stability Something is stable if it's resistant to change. 34/52
  • 35. 5 - The Stable Dependencies Principle An irresponsible package 35/52
  • 36. 5 - The Stable Dependencies Principle A dependent package 36/52
  • 37. 5 - The Stable Dependencies Principle An instable package: irresponsible and dependent 37/52
  • 38. 5 - The Stable Dependencies Principle A responsible package 38/52
  • 39. 5 - The Stable Dependencies Principle An independent package 39/52
  • 40. 5 - The Stable Dependencies Principle A stable package: responsible and independent 40/52
  • 41. 5 - The Stable Dependencies Principle Depend in the direction of stability 41/52
  • 42. 5 - The Stable Dependencies Principle Counter example 42/52
  • 43. 6 - The Stable Abstractions Principle What is more likely to change? Something concrete or something abstract? A class or an interface? · · 43/52
  • 44. 6 - The Stable Abstractions Principle Abstractness should increase with stability 44/52
  • 45. Summary Reuse/release equivalence principle Common reuse principle Common closure principle Acyclic dependencies principle Stable dependencies principle Stable abstractions principle · Reuse only code that you can release as a product.- · All code in a package is reused at the same time.- · Code in a package only changes for a few reasons.- · No cycles in the dependency graph.- · Only depend on more stable packages.- · More stable packages are also more abstract.- 45/52
  • 46. Word of advice You can't maximize them all at the same time. Keep them in mind while you are working on a package. 46/52
  • 47. Principles of PHP Package Design leanpub.com/principles-of-php-package-design I'm impressed. — Robert C. Martin 47/52
  • 48. Principles of PHP Package Design Get a 10 dollar discount: http://leanpub.com/principles-of-php-package-design/c/domcode 48/52
  • 49. Questions? feedback joind.in/11580 twitter @matthiasnoback leanpub leanpub.com/principles-of-php-package-design 49/52
  • 50. Image courtesy Clean Coders GitHub BitBucket Packagist PoEAA But Uncle Bob Robert Martin · · · · · · · 50/52
  • 51. 52/52