File tree 2 files changed +18
-7
lines changed
2 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ Unreleased]
8
+ ### Fixed
9
+ - Phing dependency moved to ` required-dev ` .
10
+
7
11
## [ 0.6.5] - 2019-11-20
8
12
### Added
9
13
- Issue #6 : locator builder supports export to string.
Original file line number Diff line number Diff line change 18
18
],
19
19
"require" : {
20
20
"php" : " ^7.3" ,
21
- "remorhaz/php-json-data" : " ^0.5.1" ,
22
- "remorhaz/php-unilex" : " ^0.0.14" ,
23
- "phing/phing" : " ^2.16"
21
+ "remorhaz/php-json-data" : " ^0.5.2" ,
22
+ "remorhaz/php-unilex" : " ^0.0.14"
24
23
},
25
24
"require-dev" : {
26
- "phpunit/phpunit" : " ^8.4.2" ,
27
- "infection/infection" : " ^0.14.2" ,
28
- "squizlabs/php_codesniffer" : " ^3.5"
25
+ "phpunit/phpunit" : " ^8.4.3" ,
26
+ "infection/infection" : " ^0.15.0" ,
27
+ "squizlabs/php_codesniffer" : " ^3.5.3" ,
28
+ "phing/phing" : " ^2.16.1"
29
29
},
30
30
"autoload" : {
31
31
"psr-4" : {
40
40
"Remorhaz\\ JSON\\ Pointer\\ Test\\ " : " tests/"
41
41
}
42
42
},
43
+ "suggest" : {
44
+ "remorhaz/php-json-patch" : " Uses JSON Pointers to implement the declarative way of altering JSON data (RFC-6902)"
45
+ },
43
46
"scripts" : {
44
47
"build" : [
45
48
" vendor/bin/phing"
46
49
],
50
+ "test" : [
51
+ " vendor/bin/phpcs -sp" ,
52
+ " vendor/bin/phpunit"
53
+ ],
47
54
"infection" : [
48
55
" mkdir -p ./build/logs" ,
49
- " vendor/bin/phpunit --coverage-clover=build/logs/clover.xml --coverage-xml=build/logs/coverage-xml --log-junit=build/logs/phpunit. junit.xml" ,
56
+ " vendor/bin/phpunit --coverage-clover=build/logs/clover.xml --coverage-xml=build/logs/coverage-xml --log-junit=build/logs/junit.xml" ,
50
57
" vendor/bin/infection --coverage=build/logs --threads=4 --no-progress"
51
58
]
52
59
}
You can’t perform that action at this time.
0 commit comments