Skip to content
This repository was archived by the owner on Jul 8, 2023. It is now read-only.

Commit 5970446

Browse files
committed
Merge branch 'release/0.4.0'
2 parents ffa82c4 + 1b01bf0 commit 5970446

File tree

114 files changed

+2817
-786
lines changed

Some content is hidden

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

114 files changed

+2817
-786
lines changed

.php_cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ $finder = Symfony\CS\Finder\DefaultFinder::create()
55
->exclude(
66
array(
77
'artifacts',
8-
'assets',
9-
'bower_components',
10-
'build',
11-
'node_modules',
12-
'src-web',
138
'vendor',
149
)
1510
);

CHANGELOG.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Phony changelog
22

3+
## 0.4.0 (2015-10-20)
4+
5+
- **[IMPROVED]** Implemented new 'equal to' matcher ([#70] - thanks [@jmalloc]).
6+
- **[IMPROVED]** Improved rendering of assertion failure messages ([#71]).
7+
- **[IMPROVED]** String messages now allowed by `throws()` ([#76]).
8+
- **[FIXED]** Fixed magic method mocking bug ([#74]).
9+
- **[FIXED]** Fixed mocking of exceptions under HHVM ([#75]).
10+
- **[FIXED]** Attempting to stub a final method now throws an exception ([#77]).
11+
12+
[#70]: https://github.com/eloquent/phony/issues/70
13+
[#71]: https://github.com/eloquent/phony/issues/71
14+
[#74]: https://github.com/eloquent/phony/issues/74
15+
[#75]: https://github.com/eloquent/phony/issues/75
16+
[#76]: https://github.com/eloquent/phony/issues/76
17+
[#77]: https://github.com/eloquent/phony/issues/77
18+
319
## 0.3.0 (2015-07-22)
420

521
- **[NEW]** PHP 7 support.
@@ -24,7 +40,6 @@
2440
[#66]: https://github.com/eloquent/phony/issues/66
2541
[#67]: https://github.com/eloquent/phony/issues/67
2642
[#69]: https://github.com/eloquent/phony/issues/69
27-
[@jmalloc]: https://github.com/jmalloc
2843

2944
## 0.2.1 (2015-02-28)
3045

@@ -56,9 +71,9 @@
5671
([#52]).
5772
- **[IMPROVED]** Magic 'self' parameter detection ([#48]).
5873

59-
[Peridot]: https://github.com/peridot-php/peridot
60-
[Pho]: https://github.com/danielstjules/pho
61-
[SimpleTest]: https://github.com/lox/simpletest
74+
[peridot]: https://github.com/peridot-php/peridot
75+
[pho]: https://github.com/danielstjules/pho
76+
[simpletest]: https://github.com/lox/simpletest
6277
[#20]: https://github.com/eloquent/phony/issues/20
6378
[#27]: https://github.com/eloquent/phony/issues/27
6479
[#29]: https://github.com/eloquent/phony/issues/29
@@ -89,3 +104,5 @@
89104
## 0.1.0 (2014-10-21)
90105

91106
- **[NEW]** Initial implementation.
107+
108+
[@jmalloc]: https://github.com/jmalloc

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ changes.
88

99
All PHP code must adhere to the [PSR-2] standards.
1010

11-
[PSR-2]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md
11+
[psr-2]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md
1212

1313
## Branching and pull requests
1414

@@ -21,8 +21,8 @@ As a guideline, please follow this process:
2121
4. [Squash] commits if necessary (`git rebase -i develop`).
2222
5. Submit a pull request to the **develop** branch.
2323

24-
[Fork the repository]: https://help.github.com/articles/fork-a-repo
25-
[Squash]: http://git-scm.com/book/en/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages
24+
[fork the repository]: https://help.github.com/articles/fork-a-repo
25+
[squash]: http://git-scm.com/book/en/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages
2626

2727
## Tests
2828

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
*Mocks, stubs, and spies for PHP.*
44

5-
[![The most recent stable version is 0.3.0][version-image]][Semantic versioning]
6-
[![Current build status image][build-image]][Current build status]
7-
[![Current coverage status image][coverage-image]][Current coverage status]
5+
[![The most recent stable version is 0.4.0][version-image]][semantic versioning]
6+
[![Current build status image][build-image]][current build status]
7+
[![Current coverage status image][coverage-image]][current coverage status]
88

9-
[build-image]: http://img.shields.io/travis/eloquent/phony/develop.svg "Current build status for the develop branch"
10-
[Current build status]: https://travis-ci.org/eloquent/phony
11-
[coverage-image]: http://img.shields.io/coveralls/eloquent/phony/develop.svg "Current test coverage for the develop branch"
12-
[Current coverage status]: https://coveralls.io/r/eloquent/phony
13-
[Semantic versioning]: http://semver.org/
14-
[version-image]: http://img.shields.io/:semver-0.3.0-yellow.svg "This project uses semantic versioning"
9+
[build-image]: http://img.shields.io/travis/eloquent/phony/develop.svg?style=flat-square "Current build status for the develop branch"
10+
[current build status]: https://travis-ci.org/eloquent/phony
11+
[coverage-image]: https://img.shields.io/codecov/c/github/eloquent/phony/develop.svg?style=flat-square "Current test coverage for the develop branch"
12+
[current coverage status]: https://codecov.io/github/eloquent/phony
13+
[semantic versioning]: http://semver.org/
14+
[version-image]: http://img.shields.io/:semver-0.4.0-yellow.svg?style=flat-square "This project uses semantic versioning"
1515

1616
## Installation and documentation
1717

1818
- Available as [Composer] package [eloquent/phony].
1919

20-
[Composer]: http://getcomposer.org/
20+
[composer]: http://getcomposer.org/
2121
[eloquent/phony]: https://packagist.org/packages/eloquent/phony
2222

2323
## Here be dragons

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=5.3",
16-
"sebastian/comparator": "^1"
15+
"php": ">=5.3"
1716
},
1817
"require-dev": {
1918
"athletic/athletic": "^0.1",
@@ -27,7 +26,8 @@
2726
"phake/phake": "^2",
2827
"phpspec/prophecy": "^1",
2928
"phpunit/phpunit": "^4",
30-
"simpletest/simpletest": "^1"
29+
"sebastian/comparator": "^1",
30+
"simpletest/simpletest": "dev-master"
3131
},
3232
"autoload": {
3333
"psr-4": {
@@ -50,7 +50,7 @@
5050
},
5151
"extra": {
5252
"branch-alias": {
53-
"dev-develop": "0.4.x-dev"
53+
"dev-develop": "0.5.x-dev"
5454
}
5555
}
5656
}

0 commit comments

Comments
 (0)