@@ -12,7 +12,7 @@ composer create-project --prefer-dist mix/api-skeleton api
1212
1313## 快速开始
1414
15- 启动 [ cli-server] ( https://www.php.net/manual/zh/features.commandline.webserver.php ) 开发服务
15+ 启动 [ cli-server] ( https://www.php.net/manual/zh/features.commandline.webserver.php ) 开发服务 (零依赖)
1616
1717```
1818composer run-script --timeout=0 cliserver:start
@@ -139,8 +139,8 @@ $vega->handle('/users/{id}', [new Users(), 'index'])->methods('GET');
139139
140140路由里使用了 ` Users ` 控制器,我们需要创建他
141141
142- - 如何配置路由:[ mix-php /vega] ( https://github.com/mix-php/vega#readme )
143- - 如何调用数据库:[ mix-php /database] ( https://github.com/mix-php/database#readme )
142+ - 如何配置路由:[ mix/vega] ( https://github.com/mix-php/vega#readme )
143+ - 如何调用数据库:[ mix/database] ( https://github.com/mix-php/database#readme )
144144
145145``` php
146146<?php
@@ -195,38 +195,30 @@ curl http://127.0.0.1:9501/users/1
195195
196196容器采用了一个简单的单例模式,你可以修改为更加适合自己的方式。
197197
198- - 数据库
198+ - 数据库: [ mix/database ] ( https://github.com/mix-php/database#readme )
199199
200200```
201201DB::instance()
202202```
203203
204- 文档:[ mix-php/database] ( https://github.com/mix-php/database#readme )
205-
206- - Redis
204+ - Redis:[ mix/redis] ( https://github.com/mix-php/redis#readme )
207205
208206```
209207RDS::instance()
210208```
211209
212- 文档:[ mix-php/redis] ( https://github.com/mix-php/redis#readme )
213-
214- - 日志
210+ - 日志:[ monolog/monolog] ( https://seldaek.github.io/monolog/doc/01-usage.html )
215211
216212```
217213Logger::instance()
218214```
219215
220- 文档:[ monolog/monolog] ( https://seldaek.github.io/monolog/doc/01-usage.html )
221-
222- - 配置
216+ - 配置:[ hassankhan/config] ( https://github.com/hassankhan/config#getting-values )
223217
224218```
225219Config::instance()
226220```
227221
228- 文档:[ hassankhan/config] ( https://github.com/hassankhan/config#getting-values )
229-
230222## License
231223
232224Apache License Version 2.0, http://www.apache.org/licenses/
0 commit comments