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
#!/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 |
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 | |
/** | |
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 |
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
{ | |
"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.*", |