Composer
Composer is a package manager not in the same sense as Yum or Apt are. Yes, it deals with "packages" or libraries, but it manages them on a per-project basis, installing them in a directory (e.g. vendor) inside your project.
Features
- Command line interface
- Package Manager
Composer News & Activities
Highlights • All activities
Recent activities
- POX added Composer as alternative to Generic Package Manager
No comments or reviews, maybe you want to be first?
Post comment/reviewComposer information
AlternativeTo Categories
Development, OS & UtilitiesGitHub repository
- 28,512 Stars
- 4,530 Forks
- 168 Open Issues
- Updated Sep 17, 2024
What is Composer?
Composer is a package manager not in the same sense as Yum or Apt are. Yes, it deals with "packages" or libraries, but it manages them on a per-project basis, installing them in a directory (e.g. vendor) inside your project. By default, it does not install anything globally. Thus, it is a dependency manager. It does however support a "global" project for convenience via the global command.
This idea is not new and Composer is strongly inspired by node's npm and ruby's bundler.