Skip to content

Commit

Permalink
Add in example of using the mock laravel app
Browse files Browse the repository at this point in the history
  • Loading branch information
asheliahut committed Oct 8, 2019
1 parent b06d223 commit 8028e0f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
@@ -1,3 +1,29 @@
# Mock Laravel App

Have you ever wanted to use updated 5.6+ laravel components in your Slim or other php framework applications? Now you can just inject this mock container in and you will be able to do everything you want.

```
$container['queue'] = static function (ContainerInterface $c): Queue {
$queue = new Queue();
// Library is broken - cast some magic to get redis to work
if ('redis' === $c['settings']['queue']['driver']) {
$connector = static function () use ($c) {
$app = new \Asheliahut\MockLaravelApp();
$redisManager = new Redis($app,'predis', [
'cluster' => false,
'default' => $c['settings']['queue'],
]);
return new RedisConnector($redisManager);
};
$queue->getQueueManager()->addConnector('redis', $connector);
}
$queue->addConnection($c['settings']['queue']);
$queue->setAsGlobal();
return $queue;
};
```

0 comments on commit 8028e0f

Please sign in to comment.