bk2k/configuration-installer
最新稳定版本:0.1.2
Composer 安装命令:
composer require bk2k/configuration-installer
包简介
Configuration Installer
README 文档
README
Installer for Configuration Packages.
Examples:
- https://github.com/benjaminkott/config-commitmessage
- https://github.com/benjaminkott/config-typo3-editorconfig
- https://github.com/benjaminkott/config-typo3-stylelint
- https://github.com/benjaminkott/config-typo3-phpcsfixer
Build your own configuration package
Adapt the composer.json of your configuration package.
- Ensure the type is set to
project-configuration. - Ensure
bk2k/configuration-installeris required in any version.
{
"type": "project-configuration",
"require": {
"bk2k/configuration-installer": "*"
}
}
Add a manifest to your configuration package root.
The manifest.json file instructs the installer.
- It defines which
filesshould be copied to your project - It defines which
gitignoreentries will be added to your projects .gitignore file.
{
"files": {
".php_cs.dist": ".php_cs.dist"
},
"gitignore": [
"/.php_cs.dist",
"/.php_cs.cache"
]
}
统计信息
- 总下载量: 13.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 5
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2020-07-06