Skip to content

Commit 2f8890b

Browse files
Merge pull request #17 from stevegrunwell/release/v1.3.0
Version 1.3.0
2 parents 41d5064 + 6494867 commit 2f8890b

File tree

5 files changed

+30
-11
lines changed

5 files changed

+30
-11
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ php:
44
- 7.0
55
- 7.1
66
- 7.2
7+
- 7.3
8+
- 7.4
79

810
sudo: false
911

@@ -23,6 +25,3 @@ script:
2325

2426
after_success:
2527
- travis_retry php coveralls.phar
26-
27-
notifications:
28-
email: false

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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

composer.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,10 @@
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": {
@@ -34,5 +29,22 @@
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.

src/MarkupAssertionsTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
namespace SteveGrunwell\PHPUnit_Markup_Assertions;
1010

1111
use DOMDocument;
12+
use Laminas\Dom\Query;
1213
use PHPUnit\Framework\RiskyTestError;
13-
use Zend\Dom\Query;
1414

1515
trait MarkupAssertionsTrait
1616
{

0 commit comments

Comments
 (0)