This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Author: Kenyon Haliwell | |
* Date: 10/22/14 | |
* | |
* Used to authenticate with Yahoo via oAuth2 and then use their Contacts API to return emails. | |
* | |
* Step 1: send user to Yahoo@getContactsLink | |
* Step 2: return user to a route that calls Yahoo@getContactsArray | |
* Step 3: Whatever you wanted to do with the contacts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Command for losslessly compressing Amazon AWS images | |
*/ | |
use Illuminate\Console\Command; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Input\InputArgument; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Methods for manipulating & storing images locally and on Amazon AWS. | |
* | |
*/ | |
class ImagesHandler { | |
/** | |
* The name of the Amazon AWS bucket | |
* |