- https://github.com/musephp/clio/tree/master/src/Clio/Adapter/SymfonyBundles/GuzzleBundle
- https://github.com/ddeboer/GuzzleBundle
- https://github.com/ludofleury/GuzzleBundle
- https://github.com/8p/GuzzleBundle
- https://github.com/orkestra/OrkestraGuzzleBundle
- https://github.com/misd-service-development/guzzle-bundle
- https://github.com/ph-il/guzzle-bundle
- https://github.com/LeaseWeb/LswGuzzleBundle
This file contains 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 | |
require __DIR__.'/vendor/autoload.php'; | |
use Rhumsaa\Uuid\Uuid; | |
function printId(Uuid $uuid) { | |
$asString = $uuid->toString(); | |
$base64 = preg_replace('/==$/', '', base64_encode($uuid->getBytes())); |
I hereby claim:
- I am mattketmo on github.
- I am mattketmo (https://keybase.io/mattketmo) on keybase.
- I have a public key ASB-Y5EMoGxphAxm_9aRoVP4sLqkG_HSujckSoLmuvs2gAo
To claim this, I am signing this object:
This file contains 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
http://www.tagcommander.com/en/ | |
http://ensighten.com/ | |
http://www.opentag.qubitproducts.com/ | |
https://www.google.com/tagmanager/ |
This file contains 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 | |
// see https://github.com/liip/LiipProcessManager/ | |
require __DIR__.'/vendor/autoload.php'; | |
use Liip\ProcessManager\ProcessManager; | |
use Liip\ProcessManager\PidFile; | |
try { | |
$lock = new PidFile(new ProcessManager(), '/tmp/foobar'); |
This file contains 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
#!/usr/bin/env php | |
<?php | |
/** | |
* @see https://github.com/geocoder-php/Geocoder/blob/21e562a5ad595c6fee7a33ae90e0b42dc8866c23/src/Geocoder/Provider/GoogleMapsBusinessProvider.php#L82 | |
*/ | |
function signQuery($query, $privateKey) | |
{ | |
$url = parse_url($query); |
This file contains 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 | |
require __DIR__.'/vendor/autoload.php'; | |
use Psr\Log\LoggerInterface; | |
use Psr\Log\NullLogger; | |
use Monolog\Logger; | |
interface LoggerAwareInterface | |
{ |
This file contains 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 | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Output\NullOutput; | |
use Symfony\Component\Console\Output\OutputInterface; | |
class NullOutputCommand extends Command |
This file contains 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 | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\ConsoleOutputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
/** | |
* Testcase: app/console foo > std 2> err | |
*/ |