From Packfire Framework 2.0 onwards, we've been spotting [Composer](http://getcomposer.org/) to allow developers to manage dependencies - particularly between an Packfire web application and Packfire Framework itself. Composer is a powerful tool for PHP developers to manage libraries and package dependencies in their software. Like how the other dependency managers work with channels and content repositories, Composer loads and install packages that are required by your application from [Packagist](http://packagist.org/) or a version control repository online. In Packfire 2.0, applications comes with a default `composer.json` file to allow you quickly install the framework with the application without any hassle. To install the framework for your application, simply run: $ curl -s https://getcomposer.org/installer | php $ php composer.phar install This will install the framework into your application only. **Version compatibility** Since Packfire is with Composer now, the versions are properly managed to ensure that you get the latest updates for your application while making sure that your application does not break. Version numbers are broken into three parts. The current version released as of right now is 2.0.1. It is in the format of a `Major.Minor.Update`. This is according to the standard posted by Composer. However to ensure that your application is compatible, we run compatible updates only by changing the update number in each release. Meaning to say that if you have an application meant for Packfire 2.0, you can safely install all newer versions of Packfire with versions like `2.0.*`, i.e. 2.0.1, 2.0.2, 2.0.5, without breaking your application. If we release an update for Packfire that requires application-side updates, we will release that build as `2.1.*` instead, and post details on how you can update your application manually to ensure compatibility with the newer version. With that, you can concentrate on your business and application logic development with ease.