Laravel S Versions Save

LaravelS is an out-of-the-box adapter between Laravel/Lumen and Swoole.

v3.8.0

2 weeks ago

v3.7.38

1 month ago
  • Updated default apcu_key_max_age
  • Allow empty server header
  • Fixed register_providers not taking effect
  • Fixed invalid apollo key

v3.7.37

11 months ago

v3.7.36

1 year ago
  • Fixed #473
  • Avoid cli_set_process_title error

v3.7.35

1 year ago
  • Fixed global timer lock on Redis cluster
  • Removed the useless namespace use
  • Removed the useless parent call
  • Optimized the handler prompts
  • Fixed is_file() error when filename with %00

v3.7.34

1 year ago

v3.7.33

1 year ago
  • Remove method:Listener::__construct(Event $event).
  • Change method:Listener::handle() to Listener::handle(Event $event).
  • Return false to stop propagating the event to subsequent listeners in Listener::handle().

Before:


abstract class Listener
{
    protected $event;

    public function __construct(Event $event)
    {
        $this->event = $event;
    }

    /**
     * The logic of handling event
     * @return void
     */
    abstract public function handle();
}

Now:

abstract class Listener
{
    /**
     * The logic of handling event
     * @param Event $event
     * @return mixed
     */
    abstract public function handle(Event $event);
}

v3.7.32

1 year ago
  • Fixed strpos() issue at PHP 8.1.4 @hnher
  • Optimized Logo & docs @hhxsv5

v3.7.31

2 years ago

Fix undefined index tasking_num of SwooleStatsCollector for the new Swoole

v3.7.30

2 years ago
  • Support openswoole extension @Mechstud
  • Show openswoole version @hhxsv5