承接 felipebool/crook 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

felipebool/crook

Composer 安装命令:

composer require felipebool/crook

包简介

Crook is a simple tool to ease your life when dealing with git hooks

README 文档

README

Build Status Maintainability Codacy Badge Codacy Badge

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 我们能提供哪些服务?
定制开发 / 二次开发

基于 felipebool/crook 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 13.9k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 59
  • 点击次数: 24
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 59
  • Watchers: 3
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-02-08