Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 1fd6e09

Browse files
committedApr 30, 2018
Merge branch 'hotfix/8-php-7.2-support'
Close #8 Close #6 Fixes #7
2 parents 57327ff + 5fb3f0b commit 1fd6e09

20 files changed

+227
-221
lines changed
 

‎.coveralls.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
coverage_clover: clover.xml
2+
json_path: coveralls-upload.json

‎.gitattributes

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
/docs export-ignore
2-
/test export-ignore
3-
/vendor export-ignore
4-
.coveralls.yml export-ignore
5-
.gitattributes export-ignore
6-
.gitignore export-ignore
7-
.travis.yml export-ignore
8-
phpcs.xml export-ignore
9-
phpunit.xml.dist export-ignore
1+
/.coveralls.yml export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/.travis.yml export-ignore
5+
/composer.lock export-ignore
6+
/docs/ export-ignore
7+
/mkdocs.yml export-ignore
8+
/phpcs.xml export-ignore
9+
/phpunit.xml.dist export-ignore
10+
/test/ export-ignore

‎.gitignore

+7-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
.buildpath
2-
.DS_Store
3-
.idea
4-
.project
5-
.settings/
6-
.*.sw*
7-
.*.un~
8-
nbproject
9-
docs/html/
10-
tmp/
11-
vendor/
12-
zf-mkdoc-theme/
13-
14-
clover.xml
15-
coveralls-upload.json
16-
phpunit.xml
1+
/clover.xml
2+
/coveralls-upload.json
3+
/docs/html/
4+
/phpunit.xml
5+
/vendor/
6+
/zf-mkdoc-theme.tgz
7+
/zf-mkdoc-theme/

‎.travis.yml

+8-15
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,14 @@ sudo: false
22

33
language: php
44

5-
branches:
6-
except:
7-
- /^release-.*$/
8-
- /^ghgfk-.*$/
9-
105
cache:
116
directories:
127
- $HOME/.composer/cache
138

149
env:
1510
global:
1611
- COMPOSER_ARGS="--no-interaction"
17-
- COVERAGE_DEPS="satooshi/php-coveralls"
18-
- LEGACY_DEPS="phpunit/phpunit"
12+
- COVERAGE_DEPS="php-coveralls/php-coveralls"
1913

2014
matrix:
2115
include:
@@ -25,7 +19,7 @@ matrix:
2519
- php: 5.6
2620
env:
2721
- DEPS=locked
28-
- TEST_COVERAGE=true
22+
- LEGACY_DEPS="phpunit/phpunit"
2923
- php: 5.6
3024
env:
3125
- DEPS=latest
@@ -35,7 +29,7 @@ matrix:
3529
- php: 7
3630
env:
3731
- DEPS=locked
38-
- CS_CHECK=true
32+
- LEGACY_DEPS="phpunit/phpunit"
3933
- php: 7
4034
env:
4135
- DEPS=latest
@@ -45,6 +39,8 @@ matrix:
4539
- php: 7.1
4640
env:
4741
- DEPS=locked
42+
- CS_CHECK=true
43+
- TEST_COVERAGE=true
4844
- php: 7.1
4945
env:
5046
- DEPS=latest
@@ -57,16 +53,13 @@ matrix:
5753
- php: 7.2
5854
env:
5955
- DEPS=latest
60-
allow_failures:
61-
- php: 7.2
6256

6357
before_install:
64-
- if [[ $TEST_COVERAGE != 'true' && "$(php --version | grep xdebug -ci)" -ge 1 ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
65-
- travis_retry composer self-update
58+
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
6659

6760
install:
6861
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
69-
- if [[ $TRAVIS_PHP_VERSION =~ ^5.6 ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
62+
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
7063
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
7164
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
7265
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
@@ -77,7 +70,7 @@ script:
7770
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
7871

7972
after_script:
80-
- if [[ $TEST_COVERAGE == 'true' ]]; then composer upload-coverage ; fi
73+
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry php vendor/bin/php-coveralls -v ; fi
8174

8275
notifications:
8376
email: false

‎CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 3.1.1 - TBD
5+
## 3.1.1 - 2018-04-30
66

77
### Added
88

99
- Nothing.
1010

1111
### Changed
1212

13-
- Nothing.
13+
- [#8](https://github.com/zendframework/zend-xml2json/pull/8) ensures that tests against PHP 7.2 are not allowed to fail.
1414

1515
### Deprecated
1616

‎LICENSE.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
Copyright (c) 2005-2017, Zend Technologies USA, Inc.
2-
1+
Copyright (c) 2005-2018, Zend Technologies USA, Inc.
32
All rights reserved.
43

54
Redistribution and use in source and binary forms, with or without modification,
65
are permitted provided that the following conditions are met:
76

8-
- Redistributions of source code must retain the above copyright notice,
9-
this list of conditions and the following disclaimer.
7+
- Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
109

11-
- Redistributions in binary form must reproduce the above copyright notice,
12-
this list of conditions and the following disclaimer in the documentation
13-
and/or other materials provided with the distribution.
10+
- Redistributions in binary form must reproduce the above copyright notice, this
11+
list of conditions and the following disclaimer in the documentation and/or
12+
other materials provided with the distribution.
1413

1514
- Neither the name of Zend Technologies USA, Inc. nor the names of its
1615
contributors may be used to endorse or promote products derived from this

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# zend-xml2json
22

33
[![Build Status](https://secure.travis-ci.org/zendframework/zend-xml2json.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-xml2json)
4-
[![Coverage Status](https://coveralls.io/repos/zendframework/zend-xml2json/badge.svg?branch=master)](https://coveralls.io/r/zendframework/zend-xml2json?branch=master)
4+
[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-xml2json/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-xml2json?branch=master)
55

66
zend-xml2json provides functionality for converting XML structures to JSON.
77

‎composer.json

+22-15
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,26 @@
33
"description": "Provides functionality for converting XML to JSON, optionally including XML attributes",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"json",
89
"xml"
910
],
10-
"homepage": "https://github.com/zendframework/zend-xml2json",
11-
"config": {
12-
"sort-packages": true
13-
},
14-
"extra": {
15-
"branch-alias": {
16-
"dev-master": "3.0-dev",
17-
"dev-develop": "3.1-dev"
18-
}
11+
"support": {
12+
"docs": "https://docs.zendframework.com/zend-xml2json/",
13+
"issues": "https://github.com/zendframework/zend-xml2json/issues",
14+
"source": "https://github.com/zendframework/zend-xml2json",
15+
"rss": "https://github.com/zendframework/zend-xml2json/releases.atom",
16+
"chat": "https://zendframework-slack.herokuapp.com",
17+
"forum": "https://discourse.zendframework.com/c/questions/components"
1918
},
2019
"require": {
2120
"php": "^5.6 || ^7.0",
2221
"zendframework/zend-json": "^2.6.1 || ^3.0",
2322
"zendframework/zendxml": "^1.0.2"
2423
},
2524
"require-dev": {
26-
"phpunit/phpunit": "^5.7.22 || ^6.4.1",
25+
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
2726
"zendframework/zend-coding-standard": "~1.0.0"
2827
},
2928
"autoload": {
@@ -36,15 +35,23 @@
3635
"ZendTest\\Xml2Json\\": "test/"
3736
}
3837
},
38+
"config": {
39+
"sort-packages": true
40+
},
41+
"extra": {
42+
"branch-alias": {
43+
"dev-master": "3.1.x-dev",
44+
"dev-develop": "3.2.x-dev"
45+
}
46+
},
3947
"scripts": {
4048
"check": [
4149
"@cs-check",
4250
"@test"
4351
],
44-
"upload-coverage": "coveralls",
4552
"cs-check": "phpcs",
46-
"cs-fix": "phpcbf fix -v",
47-
"test": "phpunit",
48-
"test-coverage": "phpunit --coverage-clover clover.xml"
53+
"cs-fix": "phpcbf",
54+
"test": "phpunit --colors=always",
55+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
4956
}
5057
}

0 commit comments

Comments
 (0)
This repository has been archived.