The MIT License |
A simple inquiry about the License and use of the Codeigniter framework.
I thought I go right to the source for this question. What limitations exactly apply to the reuse of the framework? Could a person strip parts out and reuse the code in a new framework? Are there any limitations other than keeping the copyright notice in the code? Can we rip it apart change it and do whatever we like and then offer it to the public? Does it all have to stay open source? Thank You to anyone who can clear this matter up for me.
I can answer your questions/concerns once I return from vacation, at the end of August. It is awkward until then.
It could be argued that the MIT license is one of the most free licenses. It's not wordy, and pretty clear that you can do nearly anything you want, as long as the copyright notices and permission notices are retained. See it:
Quote:The MIT License (MIT) Notice the words "without restriction", but then it is quite clear that the copyright notice and permission notice shall be included in all copies ... blah blah blah.
A more complete answer, addressing different possible strategies...
Skunkbad is correct - the MIT license is pretty open, just insisting that you keep the license file, with the copyright and permissions. You can copy/modify it, but only the license/copyright holder can change the license to make the framework code more open or to change subsequent versions to closed-source. Two different strategies: - Build your app or framework on top of CodeIgniter, with everything of yours inside "application", and touching nothing inside "system". You can change behavior by providing replacements or enhancements for CI components, inside your "application/core" or "application/library" folders. The MIT license still applies to the framework, i.e. everything in "system", but you can use the license of your choice for everything of yours, and charge what you will for it. CI can be bundled in what you sell. - Rip apart CI, modifying core functionality; basically make changes inside "system". Any components you keep that come from CI need to retain the license/copyright. If they include changes from your company, then you would add a second copyright line to the license block, but you would not be able to change the license for such components. Any that are only from your company can have the license of your choice. With the second strategy, it is common practice to "dual license" a product, eg. "Some portions released under the MIT license, and some under the (proprietary?) XYZ license. If you can keep changes inside "application", then you reap the benefit of being able to easily update the CI core with new releases. If you "rip it apart", then you would have to manually integrate or refit any CI release changes that suited your revised framework. Several of the other web frameworks have come about by forking CodeIgniter, and then taking "their" framework in different directions. These include Kohana & FuelPHP. They have likely been rewritten from sratch by now, eliminating any CI code, but they started out from our base. There are lots of possibilities
Thank you for that explanation.
Practical guide to IgnitedCMS - Book coming soon, www.ignitedcms.com
(09-03-2018, 10:52 PM)ciadmin Wrote: A more complete answer, addressing different possible strategies... Perfect Answer. Thank You for taking the time. That makes things much more clear. Loving Codeigniter over all others still. |
Welcome Guest, Not a member yet? Register Sign In |