Robert Freigang
Robert Freigang
It's (still) very very annoying to have to restart wire with the language switch workaround on every reboot :-/ @ffflorian Did you found some time to investigate the issue? Or...
> @danielroehrig @danielroehrig-mm is this still the case for you with Wire Desktop [3.11.2912](https://github.com/wireapp/wire-desktop/releases/tag/linux/3.11.2912)? @ffflorian It is still the case with Wire Version 3.21.2936 and it (bug & workaround at...
My current workaround is: ```PHP use Eko\FeedBundle\Feed\Reader; use Goutte\Client; $reader = new Reader(); $client = new Client(); $client->request('GET', $url); $filename = \sprintf('%s%s%s', $this->cacheDir, \DIRECTORY_SEPARATOR, 'stellenticket.xml'); \file_put_contents($filename, $client->getInternalResponse()->getContent()); $items = $reader->load($filename);...
Määähhh. Build currently fails because of pecl installation of mongodb. Also see #271. At least nightly passed :hushed:
@tysonmatanich Will there be any progress on this issue?
@sohee-lee7 @dongsik-yoo Are there any updates on this? I would like to get it merged and tagged so that I do not need to use my own fork anymore.
I'll give it a try today. Should not be that hard.
Yep. Right now it's PHPUNIT 4.8 for all PHP versions. According to https://docs.travis-ci.com/user/languages/php/#Choosing-PHP-versions-to-test-against travis uses installed version found in `$COMPOSER_BIN_DIR/phpunit` I would suggest do add a `composer update phpunit/phpunit` in...
I think there will be 3 PRs: 1. use PHPUnit for used PHP version 2. PHPUnit 6 compatiblity (currently there is only PHPUnit ~4|~5 in composer.json) 3. add support for...
Hmmm. I currently stuck with following problem: The library code extends PHPUnit classes. The test code extends PHPUnit classes. @aik099 Do you know if it's possible to execute tests with...