mirror of
https://gitee.com/mix-php/mix.git
synced 2024-11-30 02:38:27 +08:00
feat:mix:修改为本地路径,为了墙
This commit is contained in:
parent
ebf5ccab10
commit
b780c3db7b
22
README.md
22
README.md
@ -10,7 +10,7 @@
|
||||
|
||||
<h1 align="center">Mix PHP</h1>
|
||||
|
||||
中文 | [English](https://github.com/mix-php/mix/blob/master/README_EN.md)
|
||||
中文 | [English](README_EN.md)
|
||||
|
||||
MixPHP 是一个 PHP 命令行模式开发框架;基于 `Vega` 驱动的 HTTP 可以同时支持 Swoole、WorkerMan、FPM、CLI-Server 生态,并且可以无缝切换;`V3` 是一个高度解耦的版本,整体代码基于多个独立的模块构建,即便用户不使用我们的脚手架,也可以使用这些独立模块,并且全部模块都支持原生开发。例如:你可以只使用 mix/vega 来搭配 laravel orm 使用;可以在任意环境中使用 mix/database 和 mix/redis;可以使用 mix/grpc 原生代码编写 gRPC;所有的模块你可以像搭积木一样随意组合。
|
||||
|
||||
@ -18,16 +18,16 @@ MixPHP 是一个 PHP 命令行模式开发框架;基于 `Vega` 驱动的 HTTP
|
||||
|
||||
核心模块全部可独立使用,并且都支持原生代码开发。
|
||||
|
||||
- [mix/vega](https://github.com/mix-php/vega) PHP 编写的 CLI 模式 HTTP 网络框架,支持 Swoole、WorkerMan、FPM、CLI-Server
|
||||
- [mix/database](https://github.com/mix-php/database) 可在各种环境中使用的轻量数据库,支持 FPM、CLI、Swoole、WorkerMan,可选的连接池 (协程)
|
||||
- [mix/redis](https://github.com/mix-php/redis) 可在各种环境中使用的 PHP Redis,支持 FPM、CLI、Swoole、WorkerMan,可选的连接池 (协程)
|
||||
- [mix/redis-subscribe](https://github.com/mix-php/redis-subscribe) 基于 Swoole 协程的 Redis 原生协议订阅库
|
||||
- [mix/grpc](https://github.com/mix-php/grpc) 基于 Swoole 协程的 PHP gRPC 库,包含 protoc 代码生成器、服务器、客户端
|
||||
- [mix/websocket](https://github.com/mix-php/websocket) 基于 Swoole 协程的 PHP WebSocket 服务器与客户端
|
||||
- [mix/validate](https://github.com/mix-php/validate) 基于 PSR-7 的验证库
|
||||
- [mix/worker-pool](https://github.com/mix-php/worker-pool) 基于 Swoole 的协程池、工作池库
|
||||
- [mix/event](https://github.com/mix-php/event) 基于 PSR-14 标准的事件调度库
|
||||
- [mix/cli](https://github.com/mix-php/cli) PHP 命令行交互指挥官 `重构中`
|
||||
- [mix/vega](src/vega) PHP 编写的 CLI 模式 HTTP 网络框架,支持 Swoole、WorkerMan、FPM、CLI-Server
|
||||
- [mix/database](src/database) 可在各种环境中使用的轻量数据库,支持 FPM、CLI、Swoole、WorkerMan,可选的连接池 (协程)
|
||||
- [mix/redis](src/redis) 可在各种环境中使用的 PHP Redis,支持 FPM、CLI、Swoole、WorkerMan,可选的连接池 (协程)
|
||||
- [mix/redis-subscribe](src/redis-subscribe) 基于 Swoole 协程的 Redis 原生协议订阅库
|
||||
- [mix/grpc](src/grpc) 基于 Swoole 协程的 PHP gRPC 库,包含 protoc 代码生成器、服务器、客户端
|
||||
- [mix/websocket](src/websocket) 基于 Swoole 协程的 PHP WebSocket 服务器与客户端
|
||||
- [mix/validate](src/validate) 基于 PSR-7 的验证库
|
||||
- [mix/worker-pool](src/worker-pool) 基于 Swoole 的协程池、工作池库
|
||||
- [mix/event](src/event) 基于 PSR-14 标准的事件调度库
|
||||
- [mix/cli](src/cli) PHP 命令行交互指挥官 `重构中`
|
||||
|
||||
## 快速开始
|
||||
|
||||
|
22
README_EN.md
22
README_EN.md
@ -10,7 +10,7 @@
|
||||
|
||||
<h1 align="center">Mix PHP</h1>
|
||||
|
||||
[中文](https://github.com/mix-php/mix) | English
|
||||
[中文](README.md) | English
|
||||
|
||||
MixPHP is a PHP command-line development framework; HTTP based on `Vega` can support both Swoole, WorkerMan, FPM, CLI-Server ecosystems at the same time, and can be switched seamlessly; `V3` is a highly decoupled version, the overall code is based on multiple independent Even if users do not use our scaffolding, they can also use these independent modules, and all modules support native development. For example: you can only use mix/vega to work with laravel orm; you can use mix/database and mix/redis in any environment; you can use mix/grpc native code to write gRPC; all modules can be combined like building blocks.
|
||||
|
||||
@ -18,16 +18,16 @@ MixPHP is a PHP command-line development framework; HTTP based on `Vega` can sup
|
||||
|
||||
All core modules can be used independently, and all support native code development.
|
||||
|
||||
- [mix/vega](https://github.com/mix-php/vega) CLI mode HTTP network framework written in PHP, supports Swoole, WorkerMan, FPM, CLI-Server
|
||||
- [mix/database](https://github.com/mix-php/database) Lightweight database that can be used in various environments, supports FPM, CLI, Swoole, WorkerMan, optional connection pool (coroutine)
|
||||
- [mix/redis](https://github.com/mix-php/redis) PHP Redis that can be used in various environments, supports FPM, CLI, Swoole, WorkerMan, optional connection pool (coroutine)
|
||||
- [mix/redis-subscribe](https://github.com/mix-php/redis-subscribe) Redis native protocol subscription library based on Swoole coroutine
|
||||
- [mix/grpc](https://github.com/mix-php/grpc) PHP gRPC library based on Swoole coroutine, including protoc code generator, server, client
|
||||
- [mix/websocket](https://github.com/mix-php/websocket) PHP WebSocket server and client based on Swoole coroutine
|
||||
- [mix/validate](https://github.com/mix-php/validate) PSR-7-based verification library
|
||||
- [mix/worker-pool](https://github.com/mix-php/worker-pool) Swoole-based worker pool, coroutine pool
|
||||
- [mix/event](https://github.com/mix-php/event) Event dispatcher based on PSR-14 standard
|
||||
- [mix/cli](https://github.com/mix-php/cli) PHP command line interactive commander
|
||||
- [mix/vega](src/vega) CLI mode HTTP network framework written in PHP, supports Swoole, WorkerMan, FPM, CLI-Server
|
||||
- [mix/database](src/database) Lightweight database that can be used in various environments, supports FPM, CLI, Swoole, WorkerMan, optional connection pool (coroutine)
|
||||
- [mix/redis](src/redis) PHP Redis that can be used in various environments, supports FPM, CLI, Swoole, WorkerMan, optional connection pool (coroutine)
|
||||
- [mix/redis-subscribe](src/redis-subscribe) Redis native protocol subscription library based on Swoole coroutine
|
||||
- [mix/grpc](src/grpc) PHP gRPC library based on Swoole coroutine, including protoc code generator, server, client
|
||||
- [mix/websocket](src/websocket) PHP WebSocket server and client based on Swoole coroutine
|
||||
- [mix/validate](src/validate) PSR-7-based verification library
|
||||
- [mix/worker-pool](src/worker-pool) Swoole-based worker pool, coroutine pool
|
||||
- [mix/event](src/event) Event dispatcher based on PSR-14 standard
|
||||
- [mix/cli](src/cli) PHP command line interactive commander
|
||||
|
||||
## Quick start
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user