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

Commit b00c528

Browse files
michalbundyraweierophinney
authored andcommitted
Rebase doc templates
1 parent 4235ea5 commit b00c528

File tree

12 files changed

+199
-187
lines changed

12 files changed

+199
-187
lines changed

.gitattributes

Lines changed: 10 additions & 9 deletions
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

Lines changed: 7 additions & 16 deletions
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/

LICENSE.md

Lines changed: 6 additions & 7 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 22 additions & 14 deletions
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,14 +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
],
4452
"cs-check": "phpcs",
45-
"cs-fix": "phpcbf fix -v",
46-
"test": "phpunit",
47-
"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"
4856
}
4957
}

0 commit comments

Comments
 (0)