Skip to content

Commit 50b291d

Browse files
committed
Merge branch 'master' into case-insensitive-method-names
2 parents 9ca9220 + 7944fd1 commit 50b291d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+773
-884
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 5.5
54
- 5.6
65
- 7.0
76
- 7.1
@@ -12,7 +11,7 @@ sudo: false
1211

1312
install:
1413
- composer self-update
15-
- composer install --no-interaction --prefer-source
14+
- composer install --no-interaction --prefer-dist
1615

1716
script:
1817
- php vendor/bin/phpunit

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ This project follows [Semantic Versioning 2.0.0](http://semver.org/).
44

55
## <a name="unreleased"></a>Unreleased
66

7+
## <a name="v0.12.1"></a>v0.12.1 (2018-02-08)
8+
[Full Changelog](https://github.com/tomzx/php-semver-checker-git/compare/v0.12.0...v0.12.1)
9+
### Changed
10+
* Remove dependency to herrera-io/phar-update in box.json
11+
12+
## <a name="v0.12.0"></a>v0.12.0 (2018-02-08)
13+
[Full Changelog](https://github.com/tomzx/php-semver-checker/compare/v0.11.0...v0.12.0)
14+
### Changed
15+
* Update composer outdated dependencies
16+
17+
### Removed
18+
* Remove the self-update command
19+
720
## <a name="v0.11.0"></a>v0.11.0 (2017-12-09)
821
[Full Changelog](https://github.com/tomzx/php-semver-checker/compare/v0.10.0...v0.11.0)
922
### Added

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compactors": ["Herrera\\Box\\Compactor\\Php"],
44
"compression": "GZ",
55
"directories": ["src"],
6-
"files": ["LICENSE", "vendor/herrera-io/phar-update/res/schema.json"],
6+
"files": ["LICENSE"],
77
"finder": [
88
{
99
"name": "*.php",

composer.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@
2020
"issues": "https://github.com/tomzx/php-semver-checker/issues"
2121
},
2222
"require": {
23-
"php": ">=5.5.0",
23+
"php": ">=5.6.0",
2424

25-
"hassankhan/config": "^0.10",
26-
"herrera-io/phar-update": "^2.0",
25+
"hassankhan/config": "^0.11",
2726
"nikic/php-parser": "^3.1",
28-
"symfony/console": "^2.7|^3.0",
29-
"symfony/yaml": "^2.7|^3.0",
27+
"symfony/console": "^2.7|^3.0|^4.0",
28+
"symfony/yaml": "^2.7|^3.0|^4.0",
3029
"tomzx/finder": "^0.1"
3130
},
3231
"require-dev": {
33-
"mockery/mockery": "^0.9",
32+
"mockery/mockery": "^1.0",
3433
"phpunit/phpunit": "^4.0|^5.0"
3534
},
3635
"bin": [
@@ -48,12 +47,12 @@
4847
},
4948
"config": {
5049
"platform": {
51-
"php": "5.5.9"
50+
"php": "5.6.0"
5251
}
5352
},
5453
"extra": {
5554
"branch-alias": {
56-
"dev-master": "0.12-dev"
55+
"dev-master": "0.13-dev"
5756
}
5857
}
5958
}

0 commit comments

Comments
 (0)