加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
composer.json 917 Bytes
一键复制 编辑 原始数据 按行查看 历史
K. 提交于 2020-06-18 10:52 . 更新 composer.json 声明
{
"name": "kephp/kephp",
"description": "Keep PHP easy! A portable and useful php development framework.",
"homepage": "http://kephp.com",
"type": "library",
"license": [
"MIT"
],
"authors": [
{
"name": "Jiankai Zeng",
"homepage": "http://git.oschina.net/janpoem"
},
{
"name": "Wanling Zhang",
"homepage": "http://git.oschina.net/easyzhang"
}
],
"bin": [
"kephp"
],
"require": {
"php": ">=7.1",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-curl": "*",
"ext-pdo": "*",
"voku/anti-xss": "^4.1"
},
"autoload": {
"psr-4": {
"Ke\\": "src/Ke"
},
"files": [
"src/Ke/Base.php"
]
},
"require-dev": {
},
"archive": {
"exclude": ["/tests", "/docs", "/.gitattributes", "/.gitignore"]
},
"minimum-stability": "stable",
"prefer-stable": true
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化