-
Notifications
You must be signed in to change notification settings - Fork 15
Installing with Composer
rdohms edited this page Aug 20, 2012
·
2 revisions
Composer (http://getcomposer.org) is a Dependency Manager for PHP and allow fast and easy management of third party libraries for your projects.
To install this library using composer you need to have composer.
curl -s https://getcomposer.org/installer | php
1 - Create or edit you composer.json
and add the library to the required tag.
"require": { "blobaugh/meetup-api-client": "dev-master" }
2 - If you are using a dev-master
version instead of a stable V1.X branch, you need to add the minimum stability to your file.
"minimum-stability": "dev"
3 - Run composer install
Composer also generates a autoload file, so all you need to run in your project is to include vendor/autoload.php
.