定制 makise-co/http 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

makise-co/http

Composer 安装命令:

composer require makise-co/http

包简介

Makise-Co HTTP server

README 文档

README

Makise-Co Swoole HTTP Server implementation

Installation

  • Register service provider - MakiseCo\Http\HttpServiceProvider
  • Register commands (look at src/Commands)
  • Minimal required configuration config
  • Routes declaration routes

Example configuration

// config/http.php

use function MakiseCo\Env\env;

return [
    'host' => env('HTTP_HOST', '127.0.0.1'),
    'port' => (int)env('HTTP_PORT', 10228),

    'options' => [
        'worker_num' => (int)env('HTTP_WORKER_NUM', fn() => \swoole_cpu_num()),
        'reactor_num' => (int)env('HTTP_REACTOR_NUM', fn() => \swoole_cpu_num()),
    ],

    'routes' => [
        __DIR__ . '/../routes/api.php',
    ],

    // global middleware list
    'middleware' => [

    ],

    // list of services that should be initialized before a worker starts processing requests
    // and which should be stopped before a worker exits
    // empty list means - all services should be initialized
    // [null] means - services shouldn't be initialized
    'services' => [

    ],
];

Available commands

  • routes:dump shows information about application routes
  • http:start starts HTTP server

Testing the application

This component provides a set of useful tools to test application without running HTTP server.

  • MakesHttpRequests trait (Laravel-like trait for your TestCases to invoke app routes)

统计信息

  • 总下载量: 18
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 1

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-12-05

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固