Slide 7
Slide 7 text
Generic Utility
Is this a generic class that can be used in any framework, or without a framework? In these cases, it is better to create a generic composer package and use it directly.
Tying things to CakePHP just because it is the best framework and all other frameworks are just pale imitations isn’t always the right choice, and will certainly decrease
the usage of your package.
My favorite example of this is the Collection class. It probably didn’t need to be a CakePHP core plugin, and you will see this sort of class implemented as standalone
libraries or features of other frameworks. If the class could have been a language feature, then thats not a great plugin.
> Aside, yes, we wrote our own Collection class. It’s not in the language core, and we needed it for features within our framework, so here we are.
Maybe you’re fine with it being tied to CakePHP, which works if you’re the only developer. Unfortunately, for larger organizations, frameworks change and evolve over
time, and maybe someday you find yourself needing this utility in another application that maybe isn’t using CakePHP, or isn’t even using a framework. In that case, it
would have been better to just keep it standalone, since there wasn’t ever anything tying it to the CakePHP framework itself.