felipebool/crook
Composer 安装命令:
composer require felipebool/crook
包简介
Crook is a simple tool to ease your life when dealing with git hooks
README 文档
README
Crook
First of all, Crook is a work in progress.
If you are not familiar with git hooks, you may want to read Git Hooks documentation first.
Crook is the simplest way to define and manage your Git Hooks. Its aim is to allow scripts from your composer.json run when git hook actions are triggered.
Usage
The aim of this project is to be as simple as possible, thus, you won't have to write any PHP code, you just need to install any packages from packagist and then make them run for partucular git hooks. The process is explained in the following sections.
Installation
Just run
$ composer require felipebool/crook --dev
Init Crook
$ vendor/bin/crook init will create crook.json configuration file and theHook in the root of your project.
Add a new hook
$ vendor/bin/crook add hook-name action-name will create a symbolic link from .git/hooks/hook-name to theHook, enabling that hook.
Remove a hook
$ vendor/bin/crook remove hook-name will remove the symbolic link .git/hooks/hook-name, disabling that hook.
Add a action to composer.json
When you add a new action using add you need to add what is expected to run when that action is triggered inside you composer.json. To do that, you must create a new entry inside the section scripts and then define what must run there.
Crook configuration file
Crook uses a json configuration file just like composer, it is called crook.json. The configuration is made, basically, by writting as a key the git hook name and as value the respective script entry in composer.json. See the following example
{
"pre-commit": "code-check",
"composer": "/home/felipe/bin/composer"
}
Although you are able to edit crook.json by yourself, you should do it using $ vendor/bin/crook in order to create the symbolic links. Only the composer path must be set manually. The mechanism is explained in the next section.
The mechanism
Every time you run a
vendor/bin/crook add hook-name action-name
Crook creates a symbolic link from .git/hooks/hook-name to /your/project/hook/theHook, simple as that.
Now, when git trigger the action hook-name, it will follow the link to /your/project/hook/theHook and Crook will then look for a script named action-name inside your project's composer.json and will execute the commands defined there.
Adding code validation using phpcs before any commit
In order to check your code against PSR2, you must do this
Add the script action inside composer.json
"scripts": {
"code-check": "phpcs --standard=PSR2 src/",
}
Initialize crook
$ vendor/bin/crook init
Bind code-check to pre-commit hook
$ vendor/bin/crook add pre-commit code-check
Next time you run $ git commit -m 'some message' crook will run the code defined inside code-check and will prevent code from being commited if the check fail.
felipebool/crook 适用场景与选型建议
felipebool/crook 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 13.9k 次下载、GitHub Stars 达 59, 最近一次更新时间为 2018 年 02 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「git」 「hooks」 「githook」 「crook」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 felipebool/crook 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 felipebool/crook 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 felipebool/crook 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel Pint pre-commit git hook
Easily manage git hooks in your composer config
MediaWiki extension that allows embedding external content, specified by URL, into your wiki pages
Nagios plugin to verify a git repository.
A lightweight WordPress hook helper library. Register hooks before WordPress loads, run callbacks only once, and more.
Hooks integrated in Voyager
统计信息
- 总下载量: 13.9k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 59
- 点击次数: 23
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-02-08