i'm going to create a library that consists of a lot of separate classes.
i'm very familiar with mvc but have never created a pure library before.
i wonder where i should put the business logic? the kind of logic that usually resides in a controller in a mvc.
should it be in a class or in a "bootstrap" file?
and should one file include every class, or should only one class include its classes it uses?
to clarify: my goal is not to create a mvc, but a pure library eg. email or guestbook that others can use.
thanks!