Skip to content

Instantly share code, notes, and snippets.

View krizon's full-sized avatar

Kristian Zondervan krizon

View GitHub Profile
#!/usr/bin/env bash
for D in vendor/*; do
if [ -d "${D}" ]; then
if [ "${D}" != "symfony" ]; then
echo "Processing ${D}"
deprecation-detector check ${D}
fi
fi
done
@krizon
krizon / 1Question
Last active January 2, 2016 11:49
See 1Question gist
<?php
/**
Hi,
I'm working on a PHP client for the Google Measurement Protocol and building this based on Guzzle with service descriptions. I would like to know how to overwrite a required parameters through the client config.
The service definition can be found here:
https://github.com/krizon/php-ga-measurement-protocol/blob/tid-config/src/Krizon/Google/Analytics/MeasurementProtocol/Resources/service.php
@krizon
krizon / composer.json
Created June 1, 2012 21:20
composer.json of symfony/symfony-standard
{
"name": "symfony/framework-standard-edition",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.*",
"doctrine/orm": "2.2.*",