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

Commit 0c207f5

Browse files
committed
Merge branch 'versions/1.0.0rc3'
Close #212
2 parents 613fae7 + a9e4e32 commit 0c207f5

File tree

4 files changed

+36
-26
lines changed

4 files changed

+36
-26
lines changed

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ before_script:
3636
- if [[ $EXECUTE_DOC_CHECK == 'true' ]]; then cp mkdocs.yml mkdocs.yml.orig ; fi
3737

3838
script:
39-
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/phpunit --coverage-clover clover.xml ; fi
40-
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then ./vendor/bin/phpunit ; fi
41-
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/phpcs ; fi
39+
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer test-coverage ; fi
40+
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then composer test ; fi
41+
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
4242
- if [[ $EXECUTE_DOC_CHECK == 'true' ]]; then make mkdocs ; diff mkdocs.yml mkdocs.yml.orig ; return $? ; fi
4343

4444
after_script:
45-
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/coveralls ; fi
45+
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer coveralls ; fi
4646

4747
notifications:
4848
email: true

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## 1.0.0rc3 - TBD
5+
## 1.0.0rc3 - 2015-12-07
66

77
Third release candidate.
88

CONTRIBUTING.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ To run tests:
5454

5555
If you don't have `curl` installed, you can also download `composer.phar` from https://getcomposer.org/
5656

57-
- Run the tests via `phpunit` and the provided PHPUnit config, like in this example:
57+
- Run the tests using the "test" command shipped in the `composer.json`:
5858

5959
```console
60-
$ ./vendor/bin/phpunit
60+
$ composer test
6161
```
6262

63-
You can turn on conditional tests with the phpunit.xml file.
63+
You can turn on conditional tests with the `phpunit.xml` file.
6464
To do so:
6565

6666
- Copy `phpunit.xml.dist` file to `phpunit.xml`
@@ -69,24 +69,23 @@ To do so:
6969

7070
## Running Coding Standards Checks
7171

72-
This component uses [phpcs](https://github.com/squizlabs/PHP_CodeSniffer) for coding
73-
standards checks, and provides configuration for our selected checks.
74-
`phpcs` is installed by default via Composer.
72+
First, ensure you've installed dependencies via composer, per the previous
73+
section on running tests.
7574

76-
To run checks only:
75+
To run CS checks only:
7776

7877
```console
79-
$ ./vendor/bin/phpcs
78+
$ composer cs
8079
```
8180

82-
`phpcs` also includes a tool for fixing most CS violations, `phpcbf`:
81+
To attempt to automatically fix common CS issues:
8382

8483

8584
```console
86-
$ ./vendor/bin/phpcbf
85+
$ composer cs-fix
8786
```
8887

89-
If you allow `phpcbf` to fix CS issues, please re-run the tests to ensure
88+
If the above fixes any CS issues, please re-run the tests to ensure
9089
they pass, and make sure you add and commit the changes after verification.
9190

9291
## Recommended Workflow for Contributions

composer.json

+21-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
},
1818
"require": {
19-
"php": ">=5.5",
19+
"php": "^5.5 || ^7.0",
2020
"container-interop/container-interop": "^1.1",
2121
"psr/http-message": "^1.0",
2222
"zendframework/zend-diactoros": "^1.1",
@@ -28,9 +28,9 @@
2828
"filp/whoops": "^1.1",
2929
"phpunit/phpunit": "^4.7",
3030
"squizlabs/php_codesniffer": "^2.3",
31-
"zendframework/zend-expressive-aurarouter": "~1.0-dev",
32-
"zendframework/zend-expressive-fastroute": "~1.0-dev",
33-
"zendframework/zend-expressive-zendrouter": "~1.0-dev",
31+
"zendframework/zend-expressive-aurarouter": "^1.0",
32+
"zendframework/zend-expressive-fastroute": "^1.0",
33+
"zendframework/zend-expressive-zendrouter": "^1.0",
3434
"zendframework/zend-servicemanager": "^2.6"
3535
},
3636
"autoload": {
@@ -45,14 +45,25 @@
4545
},
4646
"suggest": {
4747
"filp/whoops": "^1.1 to use the Whoops error handler",
48-
"zendframework/zend-expressive-aurarouter": "^0.1 to use the Aura.Router routing adapter",
49-
"zendframework/zend-expressive-fastroute": "^0.1 to use the FastRoute routing adapter",
50-
"zendframework/zend-expressive-zendrouter": "^0.1 to use the zend-mvc routing adapter",
51-
"zendframework/zend-expressive-platesrenderer": "^0.1 to use the Plates template renderer",
52-
"zendframework/zend-expressive-twigrenderer": "^0.1 to use the Twig template renderer",
53-
"zendframework/zend-expressive-zendviewrenderer": "^0.1 to use the zend-view PhpRenderer template renderer",
48+
"zendframework/zend-expressive-aurarouter": "^1.0 to use the Aura.Router routing adapter",
49+
"zendframework/zend-expressive-fastroute": "^1.0 to use the FastRoute routing adapter",
50+
"zendframework/zend-expressive-zendrouter": "^1.0 to use the zend-mvc routing adapter",
51+
"zendframework/zend-expressive-platesrenderer": "^1.0 to use the Plates template renderer",
52+
"zendframework/zend-expressive-twigrenderer": "^1.0 to use the Twig template renderer",
53+
"zendframework/zend-expressive-zendviewrenderer": "^1.0 to use the zend-view PhpRenderer template renderer",
5454
"aura/di": "3.0.*@beta to make use of Aura.Di dependency injection container",
5555
"mouf/pimple-interop": "^1.0 to use Pimple for dependency injection",
5656
"zendframework/zend-servicemanager": "^2.5 to use zend-servicemanager for dependency injection"
57+
},
58+
"scripts": {
59+
"check": [
60+
"@cs",
61+
"@test"
62+
],
63+
"coveralls": "coveralls",
64+
"cs": "phpcs",
65+
"cs-fix": "phpcbf",
66+
"test": "phpunit",
67+
"test-coverage": "phpunit --coverage-clover clover.xml"
5768
}
5869
}

0 commit comments

Comments
 (0)