gatenbysanderson/code-sniffer
Composer 安装命令:
composer require gatenbysanderson/code-sniffer
包简介
The coding standards set by the company
README 文档
README
The coding standards that have been set and agreed by the development team.
Licence
Copyright © 2018 GatenbySanderson Ltd.
This project is open source software released under the terms of the MIT licence: see LICENCE.md.
Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Prerequisites
- PHP >=5.6
As this is a private repo, when using composer to require this package - it is assumed your SSH key has already been added to GitHub to authenticate.
Installing
Start by adding this repo to your projects composer.json file:
{
"repositories": [
{
"type": "vcs",
"url": "git@github.com:gatenbysanderson/code-sniffer.git",
"no-api": true
}
]
}
You can then simply require the package as with any other:
$ composer require --dev gatenbysanderson/code-sniffer
Running the Sniffer
To run the sniffer, you can either call the command in full:
$ vendor/bin/phpcs --standard=vendor/gatenbysanderson/code-sniffer/src/phpcs.xml directory1 [directory2 ...]
Or create a composer script to make life easier:
{
"scripts": {
"gscs": "phpcs --standard=vendor/gatenbysanderson/code-sniffer/src/phpcs.xml directory1 [directory2 ...]"
}
}
This allows you to then run:
$ composer gscs
Built With
- PHP_CodeSniffer - The code sniffer
- Composer - Dependency management
Contributing
All changes must be made through the medium of a pull request.
- Create a feature branch off of the
developbranch:feature/my-awesome-feature - Push your commits to the feature branch
- Submit a pull request to merge the feature into
develop - Once accepted,
developshould then be merged intomaster mastershould then be tagged with a new release
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
统计信息
- 总下载量: 21
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2018-02-16