Skip to content

Commit 2770d3a

Browse files
committed
Phing dependency moved to require-dev
1 parent 165e192 commit 2770d3a

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
### Fixed
9+
- Phing dependency moved to `required-dev`.
10+
711
## [0.6.5] - 2019-11-20
812
### Added
913
- Issue #6: locator builder supports export to string.

composer.json

+14-7
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
],
1919
"require": {
2020
"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"
2423
},
2524
"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"
2929
},
3030
"autoload": {
3131
"psr-4": {
@@ -40,13 +40,20 @@
4040
"Remorhaz\\JSON\\Pointer\\Test\\": "tests/"
4141
}
4242
},
43+
"suggest": {
44+
"remorhaz/php-json-patch": "Uses JSON Pointers to implement the declarative way of altering JSON data (RFC-6902)"
45+
},
4346
"scripts": {
4447
"build": [
4548
"vendor/bin/phing"
4649
],
50+
"test": [
51+
"vendor/bin/phpcs -sp",
52+
"vendor/bin/phpunit"
53+
],
4754
"infection": [
4855
"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",
5057
"vendor/bin/infection --coverage=build/logs --threads=4 --no-progress"
5158
]
5259
}

0 commit comments

Comments
 (0)