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

Commit

Permalink
Merging develop to master in preparation for 2.6.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Apr 30, 2018
2 parents 793def0 + 3a6e781 commit cb423fa
Show file tree
Hide file tree
Showing 24 changed files with 1,898 additions and 307 deletions.
1 change: 0 additions & 1 deletion .coveralls.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
coverage_clover: clover.xml
json_path: coveralls-upload.json
src_dir: src
18 changes: 10 additions & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
/test export-ignore
/vendor export-ignore
.coveralls.yml export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
.php_cs export-ignore
phpunit.xml.dist export-ignore
/.coveralls.yml export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/composer.lock export-ignore
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
/test/ export-ignore
24 changes: 7 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
.buildpath
.DS_Store
.idea
.project
.settings/
.*.sw*
.*.un~
nbproject
doc/html/
tmp/
zf-mkdoc-theme/

clover.xml
composer.lock
coveralls-upload.json
phpunit.xml
vendor
/clover.xml
/coveralls-upload.json
/docs/html/
/phpunit.xml
/vendor/
/zf-mkdoc-theme.tgz
/zf-mkdoc-theme/
45 changes: 0 additions & 45 deletions .php_cs

This file was deleted.

88 changes: 51 additions & 37 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,61 +2,75 @@ sudo: false

language: php

branches:
except:
- /^release-\d+\.\d+\.\d+.*$/
- /^ghgfk-.*$/

cache:
directories:
- $HOME/.composer/cache
- $HOME/.local
- zf-mkdoc-theme

env:
global:
- SITE_URL: https://zendframework.github.io/zend-debug
- GH_USER_NAME: "Matthew Weier O'Phinney"
- GH_USER_EMAIL: [email protected]
- GH_REF: github.com/zendframework/zend-debug.git
- secure: "L2VCLoMn2dvOci7YvfIPOx8a3DikGtCj8NuQve5IoE2LMCMyDwO78vgQ+/phcz8k+Acw9XBthtlIIJvjhtlN1rgywAhoEEO/QmtqIUmzPwFTEgP8un0L6I9K4rZMEJ0akKrEVDGyZzXFv3xCXyANzqIo7aVAoFFbnGjKo/Dktb1RBFkiAitVLcNAcNud/JxTvscsI4Y7Cx/sCmG6AgYm+4ibGo8Ev+L3etK+00IovTALxhKmu53PIIxUxClmMOTQ4wny6H6JNwcm9xr83Mxhn0jUWQeVlFXUEUGKC9IxHGaCa5pBOv2vtRyWrUkMzzqiZjtAGaRNCIiPx3PmXJmE1Z1sEQ3NuCbx8JBnF9pRg2Ewloc8nqRnTXzciJOsFgrifWEQBgajv12+WsWmpkrofYZ3HLdyWd7a5UT5T3xqtM3YnMKQe4j3uM43k+crlEFsxwUcf8i3Kcbm4PvkP0RPdyOgwdNAd6oMrzu2vQL6qwunuFipLkj475z8psSAuo3fPzI9FygaLf3pJMeRHPiv3yKotnAvge4JhBAPC90SvY/irjgB+hDitRemLHfKvdC6U2eC0uAhFCpI3kiv9oS8QRwdx+yzGXW1tRUbbMiye582QRgRZaJPKYw9w6NciGPAMsxGfoo+nNK9Lqx7XbI6KNZFwcLRmpVH7zpjiYL7Tto="
- COMPOSER_ARGS="--no-interaction"
- COVERAGE_DEPS="php-coveralls/php-coveralls"

matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
env:
- DEPS=lowest
- php: 5.6
env:
- EXECUTE_CS_CHECK=true
- DEPS=locked
- LEGACY_DEPS="phpunit/phpunit"
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS=true
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
- PATH="$HOME/.local/bin:$PATH"
- DEPS=latest
- php: 7
- php: hhvm
allow_failures:
- php: hhvm

notifications:
irc: "irc.freenode.org#zftalk.dev"
email: false
env:
- DEPS=lowest
- php: 7
env:
- DEPS=locked
- LEGACY_DEPS="phpunit/phpunit"
- php: 7
env:
- DEPS=latest
- php: 7.1
env:
- DEPS=lowest
- php: 7.1
env:
- DEPS=locked
- CS_CHECK=true
- TEST_COVERAGE=true
- php: 7.1
env:
- DEPS=latest
- php: 7.2
env:
- DEPS=lowest
- php: 7.2
env:
- DEPS=locked
- php: 7.2
env:
- DEPS=latest

before_install:
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
- composer self-update
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls ; fi
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi

install:
- travis_retry composer install --no-interaction --ignore-platform-reqs
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
- stty cols 120 && composer show

script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/phpunit --coverage-clover clover.xml ; fi
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then ./vendor/bin/phpunit ; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/php-cs-fixer fix -v --diff --dry-run ; fi
- if [[ $DEPLOY_DOCS == "true" && "$TRAVIS_TEST_RESULT" == "0" ]]; then wget -O theme-installer.sh "https://raw.githubusercontent.com/zendframework/zf-mkdoc-theme/master/theme-installer.sh" ; chmod 755 theme-installer.sh ; ./theme-installer.sh ; fi

after_success:
- if [[ $DEPLOY_DOCS == "true" ]]; then echo "Preparing to build and deploy documentation" ; ./zf-mkdoc-theme/deploy.sh ; echo "Completed deploying documentation" ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi

after_script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/coveralls ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry php vendor/bin/php-coveralls -v ; fi

notifications:
email: false
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,29 @@

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

## 2.5.2 - TBD
## 2.6.0 - 2018-04-30

### Added

- [#5](https://github.com/zendframework/zend-debug/pull/5) adds the
documentation, and publishes it to https://zendframework.github.io/zend-debug/
- [#13](https://github.com/zendframework/zend-debug/pull/13) adds support for PHP 7.1 and 7.2.

- [#5](https://github.com/zendframework/zend-debug/pull/5) adds the documentation, and publishes it to https://docs.zendframework.com/zend-debug/

### Changed

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.
- [#13](https://github.com/zendframework/zend-debug/pull/13) removes support for PHP 5.5.

- [#13](https://github.com/zendframework/zend-debug/pull/13) removes support for HHVM.

### Fixed

- Nothing.

13 changes: 6 additions & 7 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
Copyright (c) 2005-2015, Zend Technologies USA, Inc.

Copyright (c) 2005-2018, Zend Technologies USA, Inc.
All rights reserved.

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

- Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
- Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

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

- Neither the name of Zend Technologies USA, Inc. nor the names of its
contributors may be used to endorse or promote products derived from this
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zend-debug

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

`Zend\Debug` is a component that help the debugging of PHP applications. In
particular it offers a static method `Zend\Debug\Debug::dump()` that prints or
Expand All @@ -10,4 +10,4 @@ common because it is easy to use in an ad hoc fashion and requires no
initialization, special tools, or debugging environment.

- File issues at https://github.com/zendframework/zend-debug/issues
- Documentation is at https://zendframework.github.io/zend-debug/
- Documentation is at https://docs.zendframework.com/zend-debug/
58 changes: 38 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,58 @@
{
"name": "zendframework/zend-debug",
"description": " ",
"description": "Safely dump debug information to HTML",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"zf",
"zendframework",
"debug"
],
"homepage": "https://github.com/zendframework/zend-debug",
"autoload": {
"psr-4": {
"Zend\\Debug\\": "src/"
}
"support": {
"docs": "https://docs.zendframework.com/zend-debug/",
"issues": "https://github.com/zendframework/zend-debug/issues",
"source": "https://github.com/zendframework/zend-debug",
"rss": "https://github.com/zendframework/zend-debug/releases.atom",
"chat": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
"php": ">=5.5"
"php": "^5.6 || ^7.0",
"zendframework/zend-escaper": "^2.0"
},
"require-dev": {
"zendframework/zend-escaper": "2.*",
"fabpot/php-cs-fixer": "1.7.*",
"phpunit/PHPUnit": "~4.0"
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5",
"zendframework/zend-coding-standard": "~1.0.0"
},
"suggest": {
"ext/xdebug": "XDebug, for better backtrace output",
"zendframework/zend-escaper": "To support escaped output"
"ext-xdebug": "XDebug, for better backtrace output"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.5-dev",
"dev-develop": "2.6-dev"
"autoload": {
"psr-4": {
"Zend\\Debug\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\Debug\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.6.x-dev",
"dev-develop": "2.7.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}
}
Loading

0 comments on commit cb423fa

Please sign in to comment.