Commit f864012a authored by Robin Monte da Silva's avatar Robin Monte da Silva

added simple rabbitmq compatibility

parent 268ce621
...@@ -9,8 +9,11 @@ class ExampleEvent extends Event ...@@ -9,8 +9,11 @@ class ExampleEvent extends Event
* *
* @return void * @return void
*/ */
public function __construct()
public $message;
public function __construct(string $message)
{ {
// $this->message = $message;
} }
} }
...@@ -19,6 +19,8 @@ use App\AbstractCustomer; ...@@ -19,6 +19,8 @@ use App\AbstractCustomer;
use App\PrivateCustomer; use App\PrivateCustomer;
use App\BusinessCustomer; use App\BusinessCustomer;
use App\Events\ExampleEvent;
class CustomerController extends Controller{ class CustomerController extends Controller{
use Features; use Features;
...@@ -33,7 +35,9 @@ class CustomerController extends Controller{ ...@@ -33,7 +35,9 @@ class CustomerController extends Controller{
} }
public function show(Request $request){ public function show(Request $request){
$msg = "Nachricht an RabbitMQ Queue und zurück";
event(new ExampleEvent($msg));
return response()->json(['test' => 'test']);
try{ try{
$repository = $this->em->getRepository(AbstractCustomer::class); $repository = $this->em->getRepository(AbstractCustomer::class);
} }
......
...@@ -26,6 +26,24 @@ class ExampleListener ...@@ -26,6 +26,24 @@ class ExampleListener
*/ */
public function handle(ExampleEvent $event) public function handle(ExampleEvent $event)
{ {
// $msg = $event->message;
for($i=0; $i<500; ++$i){
\Amqp::publish('holz', $msg);
}
\Amqp::consume('direct_queue', function ($message, $resolver) {
\Log::info($message->body);
$resolver->acknowledge($message);
$resolver->stopWhenProcessed();
});
\Log::info('FERTIG');
} }
} }
...@@ -22,7 +22,6 @@ $app = new Laravel\Lumen\Application( ...@@ -22,7 +22,6 @@ $app = new Laravel\Lumen\Application(
); );
$app->withFacades(); $app->withFacades();
//$app->withEloquent(); //$app->withEloquent();
/* /*
...@@ -84,16 +83,19 @@ $app->middleware([ ...@@ -84,16 +83,19 @@ $app->middleware([
| totally optional, so you are not required to uncomment this line. | totally optional, so you are not required to uncomment this line.
| |
*/ */
$app->configure('amqp');
$app->register(Bschmitt\Amqp\LumenServiceProvider::class);
$app->register(LaravelDoctrine\ORM\DoctrineServiceProvider::class); $app->register(LaravelDoctrine\ORM\DoctrineServiceProvider::class);
$app->register(LaravelDoctrine\Migrations\MigrationsServiceProvider::class); $app->register(LaravelDoctrine\Migrations\MigrationsServiceProvider::class);
// $app->register(App\Providers\AppServiceProvider::class); // $app->register(App\Providers\AppServiceProvider::class);
// $app->register(App\Providers\AuthServiceProvider::class); // $app->register(App\Providers\AuthServiceProvider::class);
// $app->register(App\Providers\EventServiceProvider::class); $app->register(App\Providers\EventServiceProvider::class);
//$app->register(VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class);
//class_alias('LaravelDoctrine\ORM\Facades\EntityManager', 'EntityManager'); //class_alias('LaravelDoctrine\ORM\Facades\EntityManager', 'EntityManager');
//class_alias('LaravelDoctrine\ORM\Facades\Registry', 'Registry'); //class_alias('LaravelDoctrine\ORM\Facades\Registry', 'Registry');
//class_alias('LaravelDoctrine\ORM\Facades\Doctrine', 'Doctrine'); //class_alias('LaravelDoctrine\ORM\Facades\Doctrine', 'Doctrine');
class_alias(\Illuminate\Support\Facades\App::class, 'App');
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
"type": "project", "type": "project",
"require": { "require": {
"php": ">=7.1.3", "php": ">=7.1.3",
"bschmitt/laravel-amqp": "^2.0",
"firebase/php-jwt": "^5.0", "firebase/php-jwt": "^5.0",
"laravel-doctrine/extensions": "^1.0", "laravel-doctrine/extensions": "^1.0",
"laravel-doctrine/migrations": "^1.2", "laravel-doctrine/migrations": "^1.2",
......
...@@ -4,8 +4,74 @@ ...@@ -4,8 +4,74 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "10a8ebaed0a5680af850d49c0a33fb02", "content-hash": "940c98c2c08bdca86b4981d5018ae2c0",
"packages": [ "packages": [
{
"name": "bschmitt/laravel-amqp",
"version": "2.0.7",
"source": {
"type": "git",
"url": "https://github.com/bschmitt/laravel-amqp.git",
"reference": "5aa814636295ad67a14da134019ab391dd6aec1e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bschmitt/laravel-amqp/zipball/5aa814636295ad67a14da134019ab391dd6aec1e",
"reference": "5aa814636295ad67a14da134019ab391dd6aec1e",
"shasum": ""
},
"require": {
"illuminate/support": ">=v5.5.28",
"php": ">=7.0",
"php-amqplib/php-amqplib": "2.*"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "^3.0@dev"
},
"type": "library",
"extra": {
"laravel": {
"providers": [
"Bschmitt\\Amqp\\AmqpServiceProvider"
],
"aliases": {
"Amqp": "Bschmitt\\Amqp\\Facades\\Amqp"
}
}
},
"autoload": {
"psr-4": {
"Bschmitt\\Amqp\\": "src/",
"Bschmitt\\Amqp\\Test\\": "test/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Björn Schmitt",
"email": "code@bjoern.io"
}
],
"description": "AMQP wrapper for Laravel and Lumen to publish and consume messages",
"keywords": [
"AMQP",
"Björn Schmitt",
"bschmitt",
"laravel",
"laravel5",
"lumen",
"message queue",
"package",
"queue",
"rabbitmq"
],
"time": "2019-05-27T10:38:44+00:00"
},
{ {
"name": "doctrine/annotations", "name": "doctrine/annotations",
"version": "v1.6.1", "version": "v1.6.1",
...@@ -1105,7 +1171,7 @@ ...@@ -1105,7 +1171,7 @@
}, },
{ {
"name": "illuminate/auth", "name": "illuminate/auth",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/auth.git", "url": "https://github.com/illuminate/auth.git",
...@@ -1156,7 +1222,7 @@ ...@@ -1156,7 +1222,7 @@
}, },
{ {
"name": "illuminate/broadcasting", "name": "illuminate/broadcasting",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/broadcasting.git", "url": "https://github.com/illuminate/broadcasting.git",
...@@ -1207,7 +1273,7 @@ ...@@ -1207,7 +1273,7 @@
}, },
{ {
"name": "illuminate/bus", "name": "illuminate/bus",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/bus.git", "url": "https://github.com/illuminate/bus.git",
...@@ -1252,16 +1318,16 @@ ...@@ -1252,16 +1318,16 @@
}, },
{ {
"name": "illuminate/cache", "name": "illuminate/cache",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/cache.git", "url": "https://github.com/illuminate/cache.git",
"reference": "d20e88f47efc529a57ac2b9959f1f81553e9e40f" "reference": "2eb67998857161904289db33e703e1a925243731"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/illuminate/cache/zipball/d20e88f47efc529a57ac2b9959f1f81553e9e40f", "url": "https://api.github.com/repos/illuminate/cache/zipball/2eb67998857161904289db33e703e1a925243731",
"reference": "d20e88f47efc529a57ac2b9959f1f81553e9e40f", "reference": "2eb67998857161904289db33e703e1a925243731",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1297,11 +1363,11 @@ ...@@ -1297,11 +1363,11 @@
], ],
"description": "The Illuminate Cache package.", "description": "The Illuminate Cache package.",
"homepage": "https://laravel.com", "homepage": "https://laravel.com",
"time": "2019-05-15T12:46:56+00:00" "time": "2019-05-26T12:37:11+00:00"
}, },
{ {
"name": "illuminate/config", "name": "illuminate/config",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/config.git", "url": "https://github.com/illuminate/config.git",
...@@ -1345,7 +1411,7 @@ ...@@ -1345,7 +1411,7 @@
}, },
{ {
"name": "illuminate/console", "name": "illuminate/console",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/console.git", "url": "https://github.com/illuminate/console.git",
...@@ -1396,7 +1462,7 @@ ...@@ -1396,7 +1462,7 @@
}, },
{ {
"name": "illuminate/container", "name": "illuminate/container",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/container.git", "url": "https://github.com/illuminate/container.git",
...@@ -1441,7 +1507,7 @@ ...@@ -1441,7 +1507,7 @@
}, },
{ {
"name": "illuminate/contracts", "name": "illuminate/contracts",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/contracts.git", "url": "https://github.com/illuminate/contracts.git",
...@@ -1485,16 +1551,16 @@ ...@@ -1485,16 +1551,16 @@
}, },
{ {
"name": "illuminate/database", "name": "illuminate/database",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/database.git", "url": "https://github.com/illuminate/database.git",
"reference": "421138e05c149e2e82edb0a6a86dca59a79a65a0" "reference": "44740cedfbd90c5fc9710ab572adf40ab0b4c11c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/illuminate/database/zipball/421138e05c149e2e82edb0a6a86dca59a79a65a0", "url": "https://api.github.com/repos/illuminate/database/zipball/44740cedfbd90c5fc9710ab572adf40ab0b4c11c",
"reference": "421138e05c149e2e82edb0a6a86dca59a79a65a0", "reference": "44740cedfbd90c5fc9710ab572adf40ab0b4c11c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1541,11 +1607,11 @@ ...@@ -1541,11 +1607,11 @@
"orm", "orm",
"sql" "sql"
], ],
"time": "2019-05-15T00:48:07+00:00" "time": "2019-05-27T13:28:29+00:00"
}, },
{ {
"name": "illuminate/encryption", "name": "illuminate/encryption",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/encryption.git", "url": "https://github.com/illuminate/encryption.git",
...@@ -1592,7 +1658,7 @@ ...@@ -1592,7 +1658,7 @@
}, },
{ {
"name": "illuminate/events", "name": "illuminate/events",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/events.git", "url": "https://github.com/illuminate/events.git",
...@@ -1637,7 +1703,7 @@ ...@@ -1637,7 +1703,7 @@
}, },
{ {
"name": "illuminate/filesystem", "name": "illuminate/filesystem",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/filesystem.git", "url": "https://github.com/illuminate/filesystem.git",
...@@ -1689,7 +1755,7 @@ ...@@ -1689,7 +1755,7 @@
}, },
{ {
"name": "illuminate/hashing", "name": "illuminate/hashing",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/hashing.git", "url": "https://github.com/illuminate/hashing.git",
...@@ -1733,7 +1799,7 @@ ...@@ -1733,7 +1799,7 @@
}, },
{ {
"name": "illuminate/http", "name": "illuminate/http",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/http.git", "url": "https://github.com/illuminate/http.git",
...@@ -1780,7 +1846,7 @@ ...@@ -1780,7 +1846,7 @@
}, },
{ {
"name": "illuminate/log", "name": "illuminate/log",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/log.git", "url": "https://github.com/illuminate/log.git",
...@@ -1825,7 +1891,7 @@ ...@@ -1825,7 +1891,7 @@
}, },
{ {
"name": "illuminate/pagination", "name": "illuminate/pagination",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/pagination.git", "url": "https://github.com/illuminate/pagination.git",
...@@ -1870,7 +1936,7 @@ ...@@ -1870,7 +1936,7 @@
}, },
{ {
"name": "illuminate/pipeline", "name": "illuminate/pipeline",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/pipeline.git", "url": "https://github.com/illuminate/pipeline.git",
...@@ -1914,7 +1980,7 @@ ...@@ -1914,7 +1980,7 @@
}, },
{ {
"name": "illuminate/queue", "name": "illuminate/queue",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/queue.git", "url": "https://github.com/illuminate/queue.git",
...@@ -1973,16 +2039,16 @@ ...@@ -1973,16 +2039,16 @@
}, },
{ {
"name": "illuminate/routing", "name": "illuminate/routing",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/routing.git", "url": "https://github.com/illuminate/routing.git",
"reference": "f014071122138614fc2936f84742c23f080108e2" "reference": "5d27665d72421f3068d71e68ef317ffef3c1c9c9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/illuminate/routing/zipball/f014071122138614fc2936f84742c23f080108e2", "url": "https://api.github.com/repos/illuminate/routing/zipball/5d27665d72421f3068d71e68ef317ffef3c1c9c9",
"reference": "f014071122138614fc2936f84742c23f080108e2", "reference": "5d27665d72421f3068d71e68ef317ffef3c1c9c9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2026,11 +2092,11 @@ ...@@ -2026,11 +2092,11 @@
], ],
"description": "The Illuminate Routing package.", "description": "The Illuminate Routing package.",
"homepage": "https://laravel.com", "homepage": "https://laravel.com",
"time": "2019-05-07T12:50:14+00:00" "time": "2019-05-22T19:06:19+00:00"
}, },
{ {
"name": "illuminate/session", "name": "illuminate/session",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/session.git", "url": "https://github.com/illuminate/session.git",
...@@ -2081,16 +2147,16 @@ ...@@ -2081,16 +2147,16 @@
}, },
{ {
"name": "illuminate/support", "name": "illuminate/support",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/support.git", "url": "https://github.com/illuminate/support.git",
"reference": "eb6ad85fd80163fdaa5b97983e0e32d811128242" "reference": "5283f273d0bc67964cc7f6373573273de7676c77"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/illuminate/support/zipball/eb6ad85fd80163fdaa5b97983e0e32d811128242", "url": "https://api.github.com/repos/illuminate/support/zipball/5283f273d0bc67964cc7f6373573273de7676c77",
"reference": "eb6ad85fd80163fdaa5b97983e0e32d811128242", "reference": "5283f273d0bc67964cc7f6373573273de7676c77",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2138,11 +2204,11 @@ ...@@ -2138,11 +2204,11 @@
], ],
"description": "The Illuminate Support package.", "description": "The Illuminate Support package.",
"homepage": "https://laravel.com", "homepage": "https://laravel.com",
"time": "2019-05-17T18:49:15+00:00" "time": "2019-05-27T17:33:34+00:00"
}, },
{ {
"name": "illuminate/translation", "name": "illuminate/translation",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/translation.git", "url": "https://github.com/illuminate/translation.git",
...@@ -2188,7 +2254,7 @@ ...@@ -2188,7 +2254,7 @@
}, },
{ {
"name": "illuminate/validation", "name": "illuminate/validation",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/validation.git", "url": "https://github.com/illuminate/validation.git",
...@@ -2240,7 +2306,7 @@ ...@@ -2240,7 +2306,7 @@
}, },
{ {
"name": "illuminate/view", "name": "illuminate/view",
"version": "v5.8.18", "version": "v5.8.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/illuminate/view.git", "url": "https://github.com/illuminate/view.git",
...@@ -2944,6 +3010,80 @@ ...@@ -2944,6 +3010,80 @@
], ],
"time": "2019-05-05T12:50:25+00:00" "time": "2019-05-05T12:50:25+00:00"
}, },
{
"name": "php-amqplib/php-amqplib",
"version": "v2.9.2",
"source": {
"type": "git",
"url": "https://github.com/php-amqplib/php-amqplib.git",
"reference": "76faddcd668dabb8d4f7c00e86b8a9decd781a59"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76faddcd668dabb8d4f7c00e86b8a9decd781a59",
"reference": "76faddcd668dabb8d4f7c00e86b8a9decd781a59",
"shasum": ""
},
"require": {
"ext-bcmath": "*",
"ext-sockets": "*",
"php": ">=5.4.0"
},
"replace": {
"videlalvaro/php-amqplib": "self.version"
},
"require-dev": {
"ext-curl": "*",
"nategood/httpful": "^0.2.20",
"phpdocumentor/phpdocumentor": "^2.9",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.5"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.8-dev"
}
},
"autoload": {
"psr-4": {
"PhpAmqpLib\\": "PhpAmqpLib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"LGPL-2.1-or-later"
],
"authors": [
{
"name": "Alvaro Videla",
"role": "Original Maintainer"
},
{
"name": "John Kelly",
"email": "johnmkelly86@gmail.com",
"role": "Maintainer"
},
{
"name": "Raúl Araya",
"email": "nubeiro@gmail.com",
"role": "Maintainer"
},
{
"name": "Luke Bakken",
"email": "luke@bakken.io",
"role": "Maintainer"
}
],
"description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
"homepage": "https://github.com/php-amqplib/php-amqplib/",
"keywords": [
"message",
"queue",
"rabbitmq"
],
"time": "2019-04-24T15:36:21+00:00"
},
{ {
"name": "phpoption/phpoption", "name": "phpoption/phpoption",
"version": "1.5.0", "version": "1.5.0",
...@@ -3140,16 +3280,16 @@ ...@@ -3140,16 +3280,16 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81" "reference": "7a293c9a4587a92e6a0e81edb0bea54071b1b99d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81", "url": "https://api.github.com/repos/symfony/console/zipball/7a293c9a4587a92e6a0e81edb0bea54071b1b99d",
"reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81", "reference": "7a293c9a4587a92e6a0e81edb0bea54071b1b99d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3208,25 +3348,32 @@ ...@@ -3208,25 +3348,32 @@
], ],
"description": "Symfony Console Component", "description": "Symfony Console Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-04-08T14:23:48+00:00" "time": "2019-05-09T09:19:46+00:00"
}, },
{ {
"name": "symfony/contracts", "name": "symfony/contracts",
"version": "v1.1.0", "version": "v1.1.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/contracts.git", "url": "https://github.com/symfony/contracts.git",
"reference": "d3636025e8253c6144358ec0a62773cae588395b" "reference": "b6e291a08e6b002fb56aa6f3e2a2beb6674d2b2f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/contracts/zipball/d3636025e8253c6144358ec0a62773cae588395b", "url": "https://api.github.com/repos/symfony/contracts/zipball/b6e291a08e6b002fb56aa6f3e2a2beb6674d2b2f",
"reference": "d3636025e8253c6144358ec0a62773cae588395b", "reference": "b6e291a08e6b002fb56aa6f3e2a2beb6674d2b2f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1.3" "php": "^7.1.3"
}, },
"replace": {
"symfony/cache-contracts": "self.version",
"symfony/event-dispatcher-contracts": "self.version",
"symfony/http-client-contracts": "self.version",
"symfony/service-contracts": "self.version",
"symfony/translation-contracts": "self.version"
},
"require-dev": { "require-dev": {
"psr/cache": "^1.0", "psr/cache": "^1.0",
"psr/container": "^1.0", "psr/container": "^1.0",
...@@ -3235,11 +3382,12 @@ ...@@ -3235,11 +3382,12 @@
"suggest": { "suggest": {
"psr/cache": "When using the Cache contracts", "psr/cache": "When using the Cache contracts",
"psr/container": "When using the Service contracts", "psr/container": "When using the Service contracts",
"symfony/cache-contracts-implementation": "", "psr/event-dispatcher": "When using the EventDispatcher contracts",
"symfony/cache-implementation": "",
"symfony/event-dispatcher-implementation": "", "symfony/event-dispatcher-implementation": "",
"symfony/http-client-contracts-implementation": "", "symfony/http-client-implementation": "",
"symfony/service-contracts-implementation": "", "symfony/service-implementation": "",
"symfony/translation-contracts-implementation": "" "symfony/translation-implementation": ""
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -3279,20 +3427,20 @@ ...@@ -3279,20 +3427,20 @@
"interoperability", "interoperability",
"standards" "standards"
], ],
"time": "2019-04-27T14:29:50+00:00" "time": "2019-05-28T07:50:59+00:00"
}, },
{ {
"name": "symfony/debug", "name": "symfony/debug",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/debug.git", "url": "https://github.com/symfony/debug.git",
"reference": "2d279b6bb1d582dd5740d4d3251ae8c18812ed37" "reference": "22b4d033e6bb6d94a928545a3456007b8d0da907"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/debug/zipball/2d279b6bb1d582dd5740d4d3251ae8c18812ed37", "url": "https://api.github.com/repos/symfony/debug/zipball/22b4d033e6bb6d94a928545a3456007b8d0da907",
"reference": "2d279b6bb1d582dd5740d4d3251ae8c18812ed37", "reference": "22b4d033e6bb6d94a928545a3456007b8d0da907",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3335,11 +3483,11 @@ ...@@ -3335,11 +3483,11 @@
], ],
"description": "Symfony Debug Component", "description": "Symfony Debug Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-04-11T11:27:41+00:00" "time": "2019-05-20T16:15:26+00:00"
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher.git", "url": "https://github.com/symfony/event-dispatcher.git",
...@@ -3403,16 +3551,16 @@ ...@@ -3403,16 +3551,16 @@
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/finder.git", "url": "https://github.com/symfony/finder.git",
"reference": "e45135658bd6c14b61850bf131c4f09a55133f69" "reference": "e0ff582c4b038567a7c6630f136488b1d793e6a9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/e45135658bd6c14b61850bf131c4f09a55133f69", "url": "https://api.github.com/repos/symfony/finder/zipball/e0ff582c4b038567a7c6630f136488b1d793e6a9",
"reference": "e45135658bd6c14b61850bf131c4f09a55133f69", "reference": "e0ff582c4b038567a7c6630f136488b1d793e6a9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3448,20 +3596,20 @@ ...@@ -3448,20 +3596,20 @@
], ],
"description": "Symfony Finder Component", "description": "Symfony Finder Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-04-06T13:51:08+00:00" "time": "2019-05-26T20:47:34+00:00"
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "1ea878bd3af18f934dedb8c0de60656a9a31a718" "reference": "0d37a9bd2c7cbf887c29fee1a3301d74c73851dd"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/1ea878bd3af18f934dedb8c0de60656a9a31a718", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0d37a9bd2c7cbf887c29fee1a3301d74c73851dd",
"reference": "1ea878bd3af18f934dedb8c0de60656a9a31a718", "reference": "0d37a9bd2c7cbf887c29fee1a3301d74c73851dd",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3502,20 +3650,20 @@ ...@@ -3502,20 +3650,20 @@
], ],
"description": "Symfony HttpFoundation Component", "description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-05-01T08:36:31+00:00" "time": "2019-05-27T05:57:45+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "a7713bc522f1a1cdf0b39f809fa4542523fc3114" "reference": "ca9c1fe747f9704afd5e3c9097b80db0e31d158f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/a7713bc522f1a1cdf0b39f809fa4542523fc3114", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ca9c1fe747f9704afd5e3c9097b80db0e31d158f",
"reference": "a7713bc522f1a1cdf0b39f809fa4542523fc3114", "reference": "ca9c1fe747f9704afd5e3c9097b80db0e31d158f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3591,7 +3739,7 @@ ...@@ -3591,7 +3739,7 @@
], ],
"description": "Symfony HttpKernel Component", "description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-05-01T13:31:08+00:00" "time": "2019-05-28T12:07:12+00:00"
}, },
{ {
"name": "symfony/polyfill-ctype", "name": "symfony/polyfill-ctype",
...@@ -3767,16 +3915,16 @@ ...@@ -3767,16 +3915,16 @@
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/process.git", "url": "https://github.com/symfony/process.git",
"reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe" "reference": "57f11a07b34f009ef64a3f95ad218f895ad95374"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/8cf39fb4ccff793340c258ee7760fd40bfe745fe", "url": "https://api.github.com/repos/symfony/process/zipball/57f11a07b34f009ef64a3f95ad218f895ad95374",
"reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe", "reference": "57f11a07b34f009ef64a3f95ad218f895ad95374",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3812,20 +3960,20 @@ ...@@ -3812,20 +3960,20 @@
], ],
"description": "Symfony Process Component", "description": "Symfony Process Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-04-10T16:20:36+00:00" "time": "2019-05-26T20:47:34+00:00"
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/routing.git", "url": "https://github.com/symfony/routing.git",
"reference": "f4e43bb0dff56f0f62fa056c82d7eadcdb391bab" "reference": "c5ce09ed9db079dded1017a2494dbf6820efd204"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/f4e43bb0dff56f0f62fa056c82d7eadcdb391bab", "url": "https://api.github.com/repos/symfony/routing/zipball/c5ce09ed9db079dded1017a2494dbf6820efd204",
"reference": "f4e43bb0dff56f0f62fa056c82d7eadcdb391bab", "reference": "c5ce09ed9db079dded1017a2494dbf6820efd204",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3888,20 +4036,20 @@ ...@@ -3888,20 +4036,20 @@
"uri", "uri",
"url" "url"
], ],
"time": "2019-04-27T09:38:08+00:00" "time": "2019-05-20T16:15:26+00:00"
}, },
{ {
"name": "symfony/serializer", "name": "symfony/serializer",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/serializer.git", "url": "https://github.com/symfony/serializer.git",
"reference": "543bf3d7d4be76e878dc78c82328e978d57dd44d" "reference": "9b9ee567109c3d1196b5a2fe095a506c3b8125f7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/serializer/zipball/543bf3d7d4be76e878dc78c82328e978d57dd44d", "url": "https://api.github.com/repos/symfony/serializer/zipball/9b9ee567109c3d1196b5a2fe095a506c3b8125f7",
"reference": "543bf3d7d4be76e878dc78c82328e978d57dd44d", "reference": "9b9ee567109c3d1196b5a2fe095a506c3b8125f7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3968,25 +4116,25 @@ ...@@ -3968,25 +4116,25 @@
], ],
"description": "Symfony Serializer Component", "description": "Symfony Serializer Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-04-28T07:09:27+00:00" "time": "2019-05-20T16:15:26+00:00"
}, },
{ {
"name": "symfony/translation", "name": "symfony/translation",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation.git", "url": "https://github.com/symfony/translation.git",
"reference": "181a426dd129cb496f12d7e7555f6d0b37a7615b" "reference": "5fe4ec5ecc04fa43c34f8df033bf60e3729bfaee"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/181a426dd129cb496f12d7e7555f6d0b37a7615b", "url": "https://api.github.com/repos/symfony/translation/zipball/5fe4ec5ecc04fa43c34f8df033bf60e3729bfaee",
"reference": "181a426dd129cb496f12d7e7555f6d0b37a7615b", "reference": "5fe4ec5ecc04fa43c34f8df033bf60e3729bfaee",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.1.3", "php": "^7.1.3",
"symfony/contracts": "^1.0.2", "symfony/contracts": "^1.1.1",
"symfony/polyfill-mbstring": "~1.0" "symfony/polyfill-mbstring": "~1.0"
}, },
"conflict": { "conflict": {
...@@ -3995,7 +4143,7 @@ ...@@ -3995,7 +4143,7 @@
"symfony/yaml": "<3.4" "symfony/yaml": "<3.4"
}, },
"provide": { "provide": {
"symfony/translation-contracts-implementation": "1.0" "symfony/translation-implementation": "1.0"
}, },
"require-dev": { "require-dev": {
"psr/log": "~1.0", "psr/log": "~1.0",
...@@ -4043,11 +4191,11 @@ ...@@ -4043,11 +4191,11 @@
], ],
"description": "Symfony Translation Component", "description": "Symfony Translation Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2019-05-01T12:55:36+00:00" "time": "2019-05-28T09:07:12+00:00"
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
...@@ -4123,7 +4271,7 @@ ...@@ -4123,7 +4271,7 @@
}, },
{ {
"name": "symfony/yaml", "name": "symfony/yaml",
"version": "v4.2.8", "version": "v4.2.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/yaml.git", "url": "https://github.com/symfony/yaml.git",
...@@ -5123,16 +5271,16 @@ ...@@ -5123,16 +5271,16 @@
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "7.5.11", "version": "7.5.12",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "64cb33f5b520da490a7b13149d39b43cf3c890c6" "reference": "9ba59817745b0fe0c1a5a3032dfd4a6d2994ad1c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/64cb33f5b520da490a7b13149d39b43cf3c890c6", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9ba59817745b0fe0c1a5a3032dfd4a6d2994ad1c",
"reference": "64cb33f5b520da490a7b13149d39b43cf3c890c6", "reference": "9ba59817745b0fe0c1a5a3032dfd4a6d2994ad1c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5203,7 +5351,7 @@ ...@@ -5203,7 +5351,7 @@
"testing", "testing",
"xunit" "xunit"
], ],
"time": "2019-05-14T04:53:02+00:00" "time": "2019-05-28T11:59:40+00:00"
}, },
{ {
"name": "sebastian/code-unit-reverse-lookup", "name": "sebastian/code-unit-reverse-lookup",
......
robin-rabbitmq-test @ 6d11daa9
Subproject commit 6d11daa9a3f7221f6b2446b1fe9250b017039ba3
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment