File tree Expand file tree Collapse file tree 7 files changed +32
-24
lines changed Expand file tree Collapse file tree 7 files changed +32
-24
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 /
Original file line number Diff line number Diff line change 9
9
10
10
enabled :
11
11
- short_array_syntax
12
+
13
+ disabled :
14
+ - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ matrix:
28
28
env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci"
29
29
30
30
before_install :
31
+ - if [[ $COVERAGE != true && $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi
31
32
- travis_retry composer self-update
32
33
33
34
install :
@@ -37,5 +38,5 @@ script:
37
38
- $TEST_COMMAND
38
39
39
40
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
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+
3
4
## 1.3.1 - 2016-07-15
4
5
5
6
### Fixed
6
7
7
8
- FullHttpMessageFormatter will not read from streams that you cannot rewind (non-seekable)
8
9
- 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
+
10
12
11
13
## 1.3.0 - 2016-07-14
12
14
15
17
- FullHttpMessageFormatter to include headers and body in the formatted message
16
18
17
19
### Fixed
18
-
20
+
19
21
- #41 : Response builder broke header value
20
22
21
23
Original file line number Diff line number Diff line change 44
44
},
45
45
"scripts" : {
46
46
"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 "
48
48
},
49
49
"extra" : {
50
50
"branch-alias" : {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments