Skip to content

Commit a69d952

Browse files
Improve package (#48)
* Improve package * Improve package * Fix styleci config
1 parent 6d9c2d6 commit a69d952

File tree

7 files changed

+32
-24
lines changed

7 files changed

+32
-24
lines changed

.gitattributes

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
.editorconfig export-ignore
2-
.gitattributes export-ignore
3-
.github/ export-ignore
4-
.gitignore export-ignore
5-
.php_cs export-ignore
6-
.scrutinizer.yml export-ignore
7-
.styleci.yml export-ignore
8-
.travis.yml export-ignore
9-
phpspec.yml.ci export-ignore
10-
phpspec.yml.dist export-ignore
11-
phpunit.xml.dist export-ignore
12-
spec/ export-ignore
13-
tests/ export-ignore
1+
.editorconfig export-ignore
2+
.gitattributes export-ignore
3+
/.github/ export-ignore
4+
.gitignore export-ignore
5+
/.php_cs export-ignore
6+
/.scrutinizer.yml export-ignore
7+
/.styleci.yml export-ignore
8+
/.travis.yml export-ignore
9+
/behat.yml.dist export-ignore
10+
/features/ export-ignore
11+
/phpspec.ci.yml export-ignore
12+
/phpspec.yml.dist export-ignore
13+
/phpunit.xml.dist export-ignore
14+
/spec/ export-ignore
15+
/tests/ export-ignore

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.puli/
2-
build/
3-
vendor/
4-
composer.lock
5-
phpspec.yml
6-
phpunit.xml
1+
/behat.yml
2+
/build/
3+
/composer.lock
4+
/phpspec.yml
5+
/phpunit.xml
6+
/vendor/

.styleci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ finder:
99

1010
enabled:
1111
- short_array_syntax
12+
13+
disabled:
14+
- phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ matrix:
2828
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
2929

3030
before_install:
31+
- if [[ $COVERAGE != true && $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi
3132
- travis_retry composer self-update
3233

3334
install:
@@ -37,5 +38,5 @@ script:
3738
- $TEST_COMMAND
3839

3940
after_success:
40-
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
41-
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
41+
- if [[ $COVERAGE = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
42+
- if [[ $COVERAGE = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Change Log
22

3+
34
## 1.3.1 - 2016-07-15
45

56
### Fixed
67

78
- FullHttpMessageFormatter will not read from streams that you cannot rewind (non-seekable)
89
- FullHttpMessageFormatter will not read from the stream if $maxBodyLength is zero
9-
- FullHttpMessageFormatter rewinds streams after they are read.
10+
- FullHttpMessageFormatter rewinds streams after they are read
11+
1012

1113
## 1.3.0 - 2016-07-14
1214

@@ -15,7 +17,7 @@
1517
- FullHttpMessageFormatter to include headers and body in the formatted message
1618

1719
### Fixed
18-
20+
1921
- #41: Response builder broke header value
2022

2123

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"scripts": {
4646
"test": "vendor/bin/phpspec run",
47-
"test-ci": "vendor/bin/phpspec run -c phpspec.yml.ci"
47+
"test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml"
4848
},
4949
"extra": {
5050
"branch-alias": {
File renamed without changes.

0 commit comments

Comments
 (0)