Skip to content

friendsofhyperf/pest-plugin-hyperf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pest-plugin-hyperf

Latest Stable Version Total Downloads License

This is a Pest plugin that enables your Hyperf project's Pest to run within a Swoole-based coroutine environment.

Installation

composer require friendsofhyperf/pest-plugin-hyperf --dev

Usage

php vendor/bin/pest --coroutine
# or
php vendor/bin/pest --prepend test/prepend.php --coroutine
  • test/prepend.php
<?php
require_once __DIR__ . '/../vendor/autoload.php';

defined('BASE_PATH') or define('BASE_PATH', dirname(__DIR__, 1));

(function () {
    \Hyperf\Di\ClassLoader::init();

    \Hyperf\Context\ApplicationContext::setContainer(
        new \Hyperf\Di\Container((new \Hyperf\Di\Definition\DefinitionSourceFactory())())
    );
    
    // $container->get(Hyperf\Contract\ApplicationInterface::class);
})();

Contact

License

MIT