File tree Expand file tree Collapse file tree 5 files changed +30
-11
lines changed
Expand file tree Collapse file tree 5 files changed +30
-11
lines changed Original file line number Diff line number Diff line change 44 - 7.0
55 - 7.1
66 - 7.2
7+ - 7.3
8+ - 7.4
79
810sudo : false
911
@@ -23,6 +25,3 @@ script:
2325
2426after_success :
2527 - travis_retry php coveralls.phar
26-
27- notifications :
28- email : false
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.3.0] — 2020-01-27
8+
9+ * Replace ` zendframework/zend-dom ` with ` laminas/laminas-dom ` ([ #16 ] ).
10+ * Update Composer dependencies, add a ` composer test ` script ([ #15 ] ).
11+
712## [ 1.2.0] - 2018-03-27
813
914* Bumped the minimum version of zendframework/zend-dom to 2.7, which includes a fix for attribute values that include spaces ([ #13 ] ).
@@ -21,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2126
2227
2328[ Unreleased ] : https://github.com/stevegrunwell/phpunit-markup-assertions/compare/master...develop
29+ [ 1.3.0 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/releases/tag/v1.3.0
2430[ 1.2.0 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/releases/tag/v1.2.0
2531[ 1.1.0 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/releases/tag/v1.1.0
2632[ 1.0.0 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/releases/tag/v1.0.0
@@ -29,3 +35,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2935[ #8 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/issues/8
3036[ #9 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/issues/9
3137[ #13 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/issues/13
38+ [ #15 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/pull/15
39+ [ #16 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/issues/16
Original file line number Diff line number Diff line change 1515 "source" : " https://github.com/stevegrunwell/phpunit-markup-assertions/"
1616 },
1717 "require" : {
18- "zendframework/zend -dom" : " ^2.7"
18+ "laminas/laminas -dom" : " ^2.7"
1919 },
2020 "require-dev" : {
21- "phpunit/phpunit" : " >=6.0"
22- },
23- "scripts" : {
24- "test-coverage" : [
25- " phpunit --coverage-html=tests/coverage"
26- ]
21+ "phpunit/phpunit" : " ^6.0"
2722 },
2823 "autoload" : {
2924 "psr-4" : {
3429 "psr-4" : {
3530 "Tests\\ " : " tests/"
3631 }
32+ },
33+ "scripts" : {
34+ "test" : [
35+ " phpunit"
36+ ],
37+ "test-coverage" : [
38+ " phpunit --coverage-html=tests/coverage"
39+ ]
40+ },
41+ "scripts-descriptions" : {
42+ "test" : " Run all test suites." ,
43+ "test-coverage" : " Generate code coverage reports in tests/coverage."
44+ },
45+ "config" : {
46+ "preferred-install" : " dist" ,
47+ "sort-packages" : true ,
48+ "optimize-autoloader" : true
3749 }
3850}
File renamed without changes.
Original file line number Diff line number Diff line change 99namespace SteveGrunwell \PHPUnit_Markup_Assertions ;
1010
1111use DOMDocument ;
12+ use Laminas \Dom \Query ;
1213use PHPUnit \Framework \RiskyTestError ;
13- use Zend \Dom \Query ;
1414
1515trait MarkupAssertionsTrait
1616{
You can’t perform that action at this time.
0 commit comments