asheliahut / mock-laravel-app
A mock laravel app to inject into laravel components outside of laravel.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:module
Requires
- php: >=7.1
- illuminate/contracts: ^6.2
This package is not auto-updated.
Last update: 2025-04-17 16:46:15 UTC
README
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;
};