delboy1978uk/bone-open-api
Composer 安装命令:
composer require delboy1978uk/bone-open-api
包简介
OpenApi package for Bone Framework
README 文档
README
OpenApi package for Bone Framework
installation
Use Composer
composer require delboy1978uk/open-api
setup
Simply add to the config/packages.php
<?php // use statements here use Bone\OpenApi\OpenApi\OpenApiPackage; return [ 'packages' => [ // packages here..., OpenApiPackage::class, ], // ... ];
Create a config array entry/file. You can add a (client_credentials) client so the docs page can authorize and test your endpoints.
<?php return [ 'docs' => 'data/docs/api.json', 'swaggerClient' => [ 'clientId' => '', 'clientSecret' => '', ], ];
Run booty to deploy the front end assets.
vendor/bin/bone assets:deploy
If you do not have an npm project yet, you can simply run
vendor/bin/bone docs:setup
which will create a package.json and typespec config file, as well as the spec folder and files for your API
definitions, including definitions from vendor packages.
If you already have a pacakage.json, then your files will be left untouched. You should add the following to your
package.json
{
"devDependencies": {
"@typespec/compiler": "^1.5.0",
"@typespec/http": "^1.5.0",
"@typespec/openapi3": "^1.5.0",
"@typespec/rest": "^0.75.0",
"@typespec/versioning": "^0.75.0"
},
"scripts": {
"docs": "tsp compile ./spec"
}
}
Now you can run vendor/bin/bone docs:setup.
vendor package API definitions
Vendor packages can also provide API definitions. These are loaded in to the vendor.tsp files in the spec folder.
These files are autogenerated and ashould not be edited.
To update the vendor definitions, run
vendor/bin/bone docs:vendor-update
compiling open api docs
To create the OpenApi definition file, we compile the docs using the following command (be it npm, pnpm, or yarn)
pnpm run docs
Now you can head to /api/docs to view your API documentation. 😃 Click on the Authorize button, your client ID and
secret should already be populated, so click Authorize again, and you are ready to start calling your endpoints!
delboy1978uk/bone-open-api 适用场景与选型建议
delboy1978uk/bone-open-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 440 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 02 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 delboy1978uk/bone-open-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 delboy1978uk/bone-open-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 440
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 6
- 依赖项目数: 2
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2020-02-06