Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Composer in 2 minutes

Sebastian
October 10, 2013

Composer in 2 minutes

Showing how to tweet from PHP in 2 minutes. Using composer, adding a package which does the interaction with the twitter API, it's that easy!
This talk was aimed at developers not familiar with composer to get them interested. It was used as an introduction talk to ViennaPHP October 2013.

Sebastian

October 10, 2013
Tweet

More Decks by Sebastian

Other Decks in Programming

Transcript

  1. Use it! <?php require_once __DIR__.'/vendor/autoload.php'; $twitter = new Twitter("cKey", "cSecret",

    "accessToken", "accessTokenSecret"); $twitter->send('2 minutes already?');