gajdaw/stamp
Composer 安装命令:
composer create-project gajdaw/stamp
包简介
Versioning tool to bump version.
README 文档
README
Application that makes versioning a little easier.
1. Example
Suppose your application contains a file name metadata.json with
the following contents:
{
"name": "gajdaw-php_phars",
"version": "0.1.4",
"author": "gajdaw"
}
To release a new version you would probably:
- increase the version in
metadata.jsonfrom0.1.4to0.1.5 - commit the change setting the commit's message to
Version 0.1.5 - create an annotated tag
v0.1.5with messageRelease 0.1.5
To perform the above operations with stamp application
start with the configuration file named stamp.yml
(in your project's root directory):
filename: 'metadata.json'
regex: '/"version": "(?P<version>[\d\.]+)",/'
replacement: '"version": "{{ version }}",'
The filename parameter sets the file to be searched for version.
The regex parameter sets the regular expression used to parse
the file for version number. Please note that ?P<version>
sets the name of the variable to version.
The replacement parameter is a Twig template for the
string that represents the new version. This string
will be stored in the file defined by filename.
2. How to install?
2.1. Manual download
Download the latest release available at:
https://github.com/gajdaw/stamp/releases/download/v0.2.0/stamp.phar
You can do this with:
wget -O stamp.phar http://github.com/gajdaw/stamp/releases/download/v0.2.0/stamp.phar
2. Running stamp
Since stamp is not yet stable, I suggest using
--dry-run and --verbose options for start.
Here is the list of available commands:
$ stamp patch:up --dry-run --verbose
$ stamp minor:up --dry-run --verbose
$ stamp major:up --dry-run --verbose
The command patch:up performs the following transformation:
1.2.3 => 1.2.4
77.234.654 => 77.234.655
The command minor:up increases the number in the middle
and sets the patch number to 0:
1.2.3 => 1.3.0
77.234.654 => 77.235.0
The last command, major:up increases the first number
and sets the other numbers to 0:
1.2.3 => 2.0.0
77.234.654 => 78.0.0
3. Reading list
- https://github.com/vojtajina/grunt-bump
- https://github.com/maestrodev/puppet-blacksmith
- http://opensource.apple.com/source/libarchive/libarchive-30/libarchive/build/bump-version.sh
- http://stackoverflow.com/questions/4181185/what-does-bump-version-stands-for
- https://gist.github.com/pete-otaqui/4188238
- https://github.com/nvie/gitflow/blob/develop/bump-version
- https://docs.npmjs.com/cli/version
4. How to run the tests?
$ vagrant up
$ composer update
$ bin/phpspec run
$ bin/behat
5. How to build dev version?
git checkout master
git checkout -b build
vagrant ssh
bin/stamp version:dev
./build.bash
git checkout master
git branch -D build
6. Credits
Many concepts in this application, especially when it comes to testing, came from: https://github.com/phpspec/phpspec
Great many thanks to all contributors!
I used some of the files, like for example matchers in
features/bootstrap/Matcher/ folder, directly
(i.e. without any modifications).
In case of other fragments (e.g. parseConfigurationFile
method in Stamp\Console\Application) I changed the
code that I found in phpspec.
gajdaw/stamp 适用场景与选型建议
gajdaw/stamp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 01 月 31 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「git」 「version」 「tag」 「vcs」 「commit」 「bump」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 gajdaw/stamp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 gajdaw/stamp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 gajdaw/stamp 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Easily manage git hooks in your composer config
Versioning behaviour for eloquent models
Converts SemVer version (like Composer packages) into integer version with operators. Helps managing versions: store, compare, sort and retrive by conditions.
Display a version number
MediaWiki extension that allows embedding external content, specified by URL, into your wiki pages
Nagios plugin to verify a git repository.
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-31