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 4
4
- 7.0
5
5
- 7.1
6
6
- 7.2
7
+ - 7.3
8
+ - 7.4
7
9
8
10
sudo : false
9
11
@@ -23,6 +25,3 @@ script:
23
25
24
26
after_success :
25
27
- 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.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
12
## [ 1.2.0] - 2018-03-27
8
13
9
14
* 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.
21
26
22
27
23
28
[ 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
24
30
[ 1.2.0 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/releases/tag/v1.2.0
25
31
[ 1.1.0 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/releases/tag/v1.1.0
26
32
[ 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.
29
35
[ #8 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/issues/8
30
36
[ #9 ] : https://github.com/stevegrunwell/phpunit-markup-assertions/issues/9
31
37
[ #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 15
15
"source" : " https://github.com/stevegrunwell/phpunit-markup-assertions/"
16
16
},
17
17
"require" : {
18
- "zendframework/zend -dom" : " ^2.7"
18
+ "laminas/laminas -dom" : " ^2.7"
19
19
},
20
20
"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"
27
22
},
28
23
"autoload" : {
29
24
"psr-4" : {
34
29
"psr-4" : {
35
30
"Tests\\ " : " tests/"
36
31
}
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
37
49
}
38
50
}
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
namespace SteveGrunwell \PHPUnit_Markup_Assertions ;
10
10
11
11
use DOMDocument ;
12
+ use Laminas \Dom \Query ;
12
13
use PHPUnit \Framework \RiskyTestError ;
13
- use Zend \Dom \Query ;
14
14
15
15
trait MarkupAssertionsTrait
16
16
{
You can’t perform that action at this time.
0 commit comments