forked from true/php-punycode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Old PHP versions dropped and doc updated
- Loading branch information
Florent Morselli
committed
Oct 24, 2015
1 parent
c4a607a
commit f0223c3
Showing
5 changed files
with
71 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
} | ||
}, | ||
"require": { | ||
"php": ">=5.3.0", | ||
"php": ">=5.6", | ||
"ext-mbstring": "*" | ||
}, | ||
"require-dev": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Contributing | ||
============ | ||
|
||
First of all, **thank you** for contributing. | ||
|
||
Bugs or feature requests can be posted online on the GitHub issues section of the project. | ||
|
||
Few rules to ease code reviews and merges: | ||
|
||
- You MUST follow the [PSR-1](http://www.php-fig.org/psr/psr-1/), [PSR-2](http://www.php-fig.org/psr/psr-2/) and [PSR-4](http://www.php-fig.org/psr/psr-4/) coding standards. | ||
- You MUST run the test suite. | ||
- You MUST write (or update) unit tests when bugs are fixed or features are added. | ||
- You SHOULD write documentation. | ||
|
||
We use [Git-Flow](http://jeffkreeftmeijer.com/2010/why-arent-you-using-git-flow/) to automate our git branching workflow. | ||
|
||
To contribute use [Pull Requests](https://help.github.com/articles/using-pull-requests), please, write commit messages that make sense, and rebase your branch before submitting your PR. | ||
|
||
May be asked to squash your commits too. This is used to "clean" your Pull Request before merging it, avoiding commits such as fix tests, fix 2, fix 3, etc. | ||
|
||
Run test suite | ||
------------ | ||
|
||
* install composer: `curl -s http://getcomposer.org/installer | php` | ||
* install dependencies: `php composer.phar install` | ||
* run tests: `vendor/bin/phpunit` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
The Release Process | ||
=================== | ||
|
||
We manage its releases through features and time-based models. | ||
|
||
- A new patch version comes out every month when you made backwards-compatible bug fixes. | ||
- A new minor version comes every six months when we added functionality in a backwards-compatible manner. | ||
- A new major version comes every year when we make incompatible API changes. | ||
|
||
The meaning of "patch" "minor" and "major" comes from the Semantic [Versioning strategy](http://semver.org/). | ||
|
||
This release process applies from version 3.0.x. | ||
|
||
Backwards Compatibility | ||
----------------------- | ||
|
||
We allow developers to upgrade with confidence from one minor version to the next one. | ||
|
||
Whenever keeping backward compatibility is not possible, the feature, the enhancement or the bug fix will be scheduled for the next major version. |