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

Commit 821c18e

Browse files
committed
Merging develop to master in preparation for 1.2.0 release.
2 parents 1cbac66 + a45c0e5 commit 821c18e

File tree

74 files changed

+1347
-929
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1347
-929
lines changed

.coveralls.yml

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

.gitattributes

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
/doc export-ignore
2-
/test export-ignore
3-
.gitattributes export-ignore
4-
.gitignore export-ignore
5-
.travis.yml export-ignore
6-
mkdocs.yml export-ignore
7-
phpcs.xml export-ignore
8-
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-
doc/html/
10-
tmp/
11-
zf-mkdoc-theme/
12-
13-
clover.xml
14-
coveralls-upload.json
15-
phpunit.xml
16-
vendor
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

Lines changed: 28 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -2,85 +2,75 @@ sudo: false
22

33
language: php
44

5-
branches:
6-
except:
7-
- /^release-.*$/
8-
- /^ghgfk-.*$/
9-
105
cache:
116
directories:
127
- $HOME/.composer/cache
13-
- $HOME/.local
14-
- zf-mkdoc-theme
158

169
env:
1710
global:
18-
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
19-
- SITE_URL=https://zendframework.github.io/zend-mvc-console
20-
- GH_USER_NAME="Matthew Weier O'Phinney"
21-
22-
- GH_REF=github.com/zendframework/zend-mvc-console.git
23-
- secure: "NNw71pdP0hUxEbTmEr4q3K62cOcCksi+XFGwr1sVQsc8W5WI5G18JGZwf3ZM9nXYWsyhmv2ongDAVxpzOrCLDFhLrYnvuDgI2YqKP4B9v/bJZnRpYgyH5A5j8lwmtWyZ4y4RbUuFKPg2JzhVQG/ECovMdSGo9P3RFGWHpid/T69aJuk4iE9dIjn4in+WaYqpdLva539p7fo1zCD4ZJU0e9lqWLXlk0myca0zG/VEdu8/zUJm26YAWvP8L4Sv03yomze2SS+WtOnUSgPpp8bMGWgs7ryQcuL42PJIuKaEXFDNy4gX82WUC45kyXOqEDm9qwDHpAmWHU1tA5bIob+6dOIMSqf1mLUMR9XSolvtI3NegsFa67w6DtX8boTBGJGszUZRF1fkuQgTVTMNHv5xjBYlgaKtuS3skzngTrLqyplgyHPOXKSGCf4FhJoT7u6fVzcaODR3jGqXmPiyNl6CHAl8cXCN5vtDpVvjTB/GasxsDebVC9LqqlooNUkEUUUTsCsJuOxgA15504ETU0hW6ZjOeXA/sE7FrvFBsHm/xLBsAktwaY4PXHy8oyquhcy5O//U4LR8s+zoHOLr8DwRw6Ku+V3u+7AqIM89lrh0KXHK++LFwLIcI02BS+/+EHr4uC2ZKjyxI0ZmKaHNZrfXfuA7k/2eKfLw1NmD7/gCJ/E="
11+
- COMPOSER_ARGS="--no-interaction"
12+
- COVERAGE_DEPS="php-coveralls/php-coveralls"
2413

2514
matrix:
26-
fast_finish: true
2715
include:
2816
- php: 5.6
2917
env:
3018
- DEPS=lowest
3119
- php: 5.6
3220
env:
3321
- DEPS=locked
34-
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
35-
- PATH="$HOME/.local/bin:$PATH"
22+
- LEGACY_DEPS="phpunit/phpunit"
3623
- php: 5.6
3724
env:
3825
- DEPS=latest
39-
- TEST_COVERAGE=true
4026
- php: 7
4127
env:
4228
- DEPS=lowest
4329
- php: 7
4430
env:
4531
- DEPS=locked
46-
- CHECK_CS=true
32+
- LEGACY_DEPS="phpunit/phpunit"
4733
- php: 7
4834
env:
4935
- DEPS=latest
50-
- php: hhvm
36+
- php: 7.1
5137
env:
5238
- DEPS=lowest
53-
- php: hhvm
39+
- php: 7.1
5440
env:
5541
- DEPS=locked
56-
- php: hhvm
42+
- CS_CHECK=true
43+
- TEST_COVERAGE=true
44+
- php: 7.1
45+
env:
46+
- DEPS=latest
47+
- php: 7.2
48+
env:
49+
- DEPS=lowest
50+
- php: 7.2
51+
env:
52+
- DEPS=locked
53+
- php: 7.2
5754
env:
5855
- DEPS=latest
59-
allow_failures:
60-
- php: hhvm
61-
62-
notifications:
63-
irc: "irc.freenode.org#zftalk.dev"
64-
email: false
6556

6657
before_install:
67-
- travis_retry composer self-update
68-
- if [[ $TRAVIS_PHP_VERSION != "hhvm" && $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini ; fi
58+
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
6959

7060
install:
61+
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
62+
- if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
7163
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
7264
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
73-
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --no-update --dev $COMPOSER_ARGS satooshi/php-coveralls ; fi
74-
- travis_retry composer install $COMPOSER_ARGS
75-
- composer show --installed
65+
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
66+
- stty cols 120 && composer show
7667

7768
script:
7869
- if [[ $TEST_COVERAGE == 'true' ]]; then composer test-coverage ; else composer test ; fi
79-
- if [[ $CHECK_CS == 'true' ]]; then composer cs-check ; fi
80-
- 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
81-
82-
after_success:
83-
- if [[ $DEPLOY_DOCS == "true" ]]; then echo "Preparing to build and deploy documentation" ; ./zf-mkdoc-theme/deploy.sh ; echo "Completed deploying documentation" ; fi
70+
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
8471

8572
after_script:
86-
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer upload-coverage ; fi
73+
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry php vendor/bin/php-coveralls -v ; fi
74+
75+
notifications:
76+
email: false

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

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

5-
## 1.1.12 - TBD
5+
## 1.2.0 - 2018-04-30
66

77
### Added
88

9-
- Nothing.
9+
- [#24](https://github.com/zendframework/zend-mvc-console/pull/24) adds support for PHP 7.1 and 7.2.
1010

1111
### Changed
1212

@@ -18,7 +18,7 @@ All notable changes to this project will be documented in this file, in reverse
1818

1919
### Removed
2020

21-
- Nothing.
21+
- [#24](https://github.com/zendframework/zend-mvc-console/pull/24) removes support for HHVM.
2222

2323
### Fixed
2424

LICENSE.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
Copyright (c) 2005-2015, 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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# zend-mvc-console
22

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

66
zend-mvc-console provides integration between:
77

@@ -14,7 +14,7 @@ and replaces the console functionality found in the v2 releases of the latter
1414
three components.
1515

1616
- File issues at https://github.com/zendframework/zend-mvc-console/issues
17-
- Documentation is at https://zendframework.github.io/zend-mvc-console/
17+
- Documentation is at https://docs.zendframework.com/zend-mvc-console/
1818

1919
## Installation
2020

@@ -23,10 +23,10 @@ $ composer require zendframework/zend-mvc-console
2323
```
2424

2525
Assuming you are using the [component
26-
installer](https://zendframework.github.io/zend-component-installer), doing so
26+
installer](https://docs.zendframework.com/zend-component-installer), doing so
2727
will enable the component in your application, allowing you to immediately start
2828
developing console applications via your MVC. If you are not, please read the
29-
[introduction](https://zendframework.github.io/zend-mvc-console/intro/) for
29+
[introduction](https://docs.zendframework.com/zend-mvc-console/intro/) for
3030
details on how to register the functionality with your application.
3131

3232
## For use with zend-mvc v3 and up
@@ -36,6 +36,6 @@ zend-mvc releases prior to v3, as it is not compatible.
3636

3737
## Migrating from zend-mvc v2 console to zend-mvc-console
3838

39-
Please see the [migration guide](http://zendframework.github.io/zend-mvc-console/migration/v2-to-v3/)
40-
for details on how to migrate your existing zend-mvc console functionality to
39+
Please see the [migration guide](http://docs.zendframework.com/zend-mvc-console/migration/v2-to-v3/)
40+
for details on how to migrate your existing zend-mvc console functionality to
4141
the features exposed by this component.

TODO.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

composer.json

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
{
22
"name": "zendframework/zend-mvc-console",
3-
"description": " ",
3+
"description": "Integration between zend-mvc and zend-console",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"mvc",
89
"console"
910
],
10-
"homepage": "https://github.com/zendframework/zend-mvc-console",
11+
"support": {
12+
"docs": "https://docs.zendframework.com/zend-mvc-console/",
13+
"issues": "https://github.com/zendframework/zend-mvc-console/issues",
14+
"source": "https://github.com/zendframework/zend-mvc-console",
15+
"rss": "https://github.com/zendframework/zend-mvc-console/releases.atom",
16+
"chat": "https://zendframework-slack.herokuapp.com",
17+
"forum": "https://discourse.zendframework.com/c/questions/components"
18+
},
1119
"require": {
1220
"php": "^5.6 || ^7.0",
1321
"container-interop/container-interop": "^1.1",
@@ -22,17 +30,16 @@
2230
"zendframework/zend-view": "^2.6.3"
2331
},
2432
"require-dev": {
25-
"squizlabs/php_codesniffer": "^2.3.1",
26-
"phpunit/PHPUnit": "^4.5",
27-
"zendframework/zend-filter": "^2.6.1",
28-
"zendframework/zend-form": "^2.7"
29-
},
30-
"suggest": {
31-
"zendframework/zend-filter": "^2.6.1, to filter rendered results"
33+
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
34+
"zendframework/zend-coding-standard": "~1.0.0",
35+
"zendframework/zend-filter": "^2.6.1"
3236
},
3337
"conflict": {
3438
"zendframework/zend-mvc": "<3.0.0"
3539
},
40+
"suggest": {
41+
"zendframework/zend-filter": "^2.6.1, to filter rendered results"
42+
},
3643
"autoload": {
3744
"psr-4": {
3845
"Zend\\Mvc\\Console\\": "src/"
@@ -43,10 +50,13 @@
4350
"ZendTest\\Mvc\\Console\\": "test/"
4451
}
4552
},
53+
"config": {
54+
"sort-packages": true
55+
},
4656
"extra": {
4757
"branch-alias": {
48-
"dev-master": "1.1-dev",
49-
"dev-develop": "1.2-dev"
58+
"dev-master": "1.2.x-dev",
59+
"dev-develop": "1.3.x-dev"
5060
},
5161
"zf": {
5262
"component": "Zend\\Mvc\\Console"
@@ -57,10 +67,9 @@
5767
"@cs-check",
5868
"@test"
5969
],
60-
"upload-coverage": "coveralls",
6170
"cs-check": "phpcs",
62-
"cs-fix": "phpcbf fix -v",
63-
"test": "phpunit",
64-
"test-coverage": "phpunit --coverage-clover clover.xml"
71+
"cs-fix": "phpcbf",
72+
"test": "phpunit --colors=always",
73+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
6574
}
6675
}

0 commit comments

Comments
 (0)