Reputation: 2781
How can I install just the codeigniter core (system) code using Composer?
Upvotes: 4
Views: 3615
Reputation: 16754
I've just stumbled over the project that does just that - codeigniter-composer. Never used it though, simply was searching for a similar thing and this popped out.
Upvotes: 1
Reputation: 70933
This might not be what you are after, but the obvious answer is to create a composer.json
file and require "ellislab/codeigniter" - this will install whatever is offered, as a complete package.
I have no experience with CodeIgniter, but I think this will install more than you need. I have not seen and way to just install the system
directory. This would only be possible if CodeIgniter would offer this as a separate package - and they don't.
Upvotes: 3