We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--prefer-lowest
1 parent 777e16b commit 6e7d758Copy full SHA for 6e7d758
2 files changed
composer.json
@@ -28,7 +28,7 @@
28
"league/container": "~2.3",
29
"queue-interop/queue-interop": "^0.6",
30
"queue-interop/amqp-interop": "^0.6",
31
- "ackintosh/snidel": "^0.10"
+ "ackintosh/snidel": "^0.10.2"
32
},
33
"suggest": {
34
"php-amqplib/php-amqplib": "Allow sending messages to an AMQP server using php-amqplib",
tests/Driver/FlatFileDriverTest.php
@@ -95,6 +95,11 @@ public function testPopMessage()
95
96
public function testPopMessageWhichPushedAfterTheInitialCollect()
97
{
98
+ // Snidel is only supported on PHP.
99
+ if (defined('HHVM_VERSION')) {
100
+ $this->markTestSkipped();
101
+ }
102
+
103
$this->driver->createQueue('send-newsletter');
104
$snidel = new Snidel();
105
0 commit comments