I hereby claim:
- I am romainneutron on github.
- I am romainneutron (https://keybase.io/romainneutron) on keybase.
- I have a public key whose fingerprint is 1F0A B6EA FD62 362E A74A 06C7 85F0 4906 7ABF 4762
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
<<<CONFIG | |
packages: | |
- "kriswallsmith/buzz: ^0.15.0" | |
- "symfony/console: ^3.2@dev" | |
CONFIG; | |
// Find you token on https://api.slack.com/docs/oauth-test-tokens | |
use Buzz\Message\Response; |
<?php | |
use Symfony\Component\HttpFoundation\Request; | |
$loader = require __DIR__.'/../app/autoload.php'; | |
include_once __DIR__.'/../app/bootstrap.php.cache'; | |
$kernel = new AppKernel('prod', false); | |
$kernel->loadClassCache(); |
Hi everybody,
We have an issue in Symfony Process for a long time : Process::start is blocking on Windows. It's a tricky issue and it would be awesome that we could fix this. I've proposed a patch, unfortunately it seems it does not solve the issue on all setups.
I got three different Windows implementations for Symfony/Process on Windows platform. All of them are working for me and solve the bug, but it seems some of them are failing on some installs.
I need help and if you can run the Process test suite and give feedback with the following template in this gist comments:
<?php | |
use Symfony\Component\Form\Forms; | |
use Symfony\Component\Form\AbstractType; | |
use Symfony\Component\Form\FormBuilderInterface; | |
use Symfony\Component\Form\FormEvent; | |
use Symfony\Component\Form\FormEvents; | |
use Symfony\Component\EventDispatcher\EventSubscriberInterface; | |
class ApplicationFormType extends AbstractType |
<?php | |
/* | |
* This file is part of the Symfony package. | |
* | |
* (c) Fabien Potencier <fabien@symfony.com> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
{ | |
"name": "Class Connector", | |
"description" : "A custom class connector", | |
"keywords" : ["connector"], | |
"author" : { | |
"name" : "Author name", | |
"homepage" : "http://example.com", | |
"email" : "email@example.com" | |
}, | |
"homepage" : "http://example.com/project/example", |
<?php | |
use Silex\WebTestCase; | |
class FormTest extends WebTestCase | |
{ | |
public function createApplication() | |
{ | |
return require __DIR__.'/../../app.php'; | |
} |
<?php | |
use Guzzle\Http\Client; | |
require __DIR__ . '/vendor/autoload.php'; | |
$tmpFile = tempnam(sys_get_temp_dir(), 'guzzle-download'); | |
$handle = fopen($tmpFile, 'w'); | |
$client = new Client('', array( | |
Client::CURL_OPTIONS => array( |
<?php | |
namespace React\Stomp; | |
class HeartBeatClient implements ClientInterface | |
{ | |
private $client; | |
public function __construct(ClientInterface $client, $clientGuarantee, $serverGuarantee) | |
{ |