phar-io/version
Composer 安装命令:
composer require phar-io/version
包简介
Library for handling version information and constraints
README 文档
README
Library for handling version information and constraints
Installation
You can add this library as a local, per-project dependency to your project using Composer:
composer require phar-io/version
If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:
composer require --dev phar-io/version
Version constraints
A Version constraint describes a range of versions or a discrete version number. The format of version numbers follows the schema of semantic versioning: <major>.<minor>.<patch>. A constraint might contain an operator that describes the range.
Beside the typical mathematical operators like <=, >=, there are two special operators:
Caret operator: ^1.0
can be written as >=1.0.0 <2.0.0 and read as »every Version within major version 1«.
Tilde operator: ~1.0.0
can be written as >=1.0.0 <1.1.0 and read as »every version within minor version 1.1. The behavior of tilde operator depends on whether a patch level version is provided or not. If no patch level is provided, tilde operator behaves like the caret operator: ~1.0 is identical to ^1.0.
Usage examples
Parsing version constraints and check discrete versions for compliance:
use PharIo\Version\Version; use PharIo\Version\VersionConstraintParser; $parser = new VersionConstraintParser(); $caret_constraint = $parser->parse( '^7.0' ); $caret_constraint->complies( new Version( '7.0.17' ) ); // true $caret_constraint->complies( new Version( '7.1.0' ) ); // true $caret_constraint->complies( new Version( '6.4.34' ) ); // false $tilde_constraint = $parser->parse( '~1.1.0' ); $tilde_constraint->complies( new Version( '1.1.4' ) ); // true $tilde_constraint->complies( new Version( '1.2.0' ) ); // false
As of version 2.0.0, pre-release labels are supported and taken into account when comparing versions:
$leftVersion = new PharIo\Version\Version('3.0.0-alpha.1'); $rightVersion = new PharIo\Version\Version('3.0.0-alpha.2'); $leftVersion->isGreaterThan($rightVersion); // false $rightVersion->isGreaterThan($leftVersion); // true
phar-io/version 适用场景与选型建议
phar-io/version 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 780.37M 次下载、GitHub Stars 达 7.47k, 最近一次更新时间为 2016 年 11 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 phar-io/version 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 phar-io/version 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 780.37M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7480
- 点击次数: 22
- 依赖项目数: 35
- 推荐数: 1
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2016-11-30