File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -5,20 +5,27 @@ matrix:
5
5
- php : 7.1
6
6
- php : 7.1
7
7
env : COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
8
- env : COVERAGE='--coverage-clover build/logs/clover.xml'
9
8
- php : 7.2
9
+ env : COVERAGE='--coverage-clover build/logs/clover.xml'
10
10
- php : 7.2
11
11
env : COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
12
+ - php : nightly
13
+ - php : nightly
14
+ env : COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
12
15
fast_finish : true
13
16
14
17
sudo : false
15
18
16
19
before_script :
20
+ - |
21
+ if [ "$TRAVIS_PHP_VERSION" = "nightly" ]; then
22
+ COMPOSER_FLAGS="$COMPOSER_FLAGS --ignore-platform-reqs"
23
+ fi;
17
24
- travis_wait composer update --no-interaction $COMPOSER_FLAGS
18
25
19
26
script :
20
27
- if [[ $COVERAGE ]]; then mkdir -p build/logs; fi
21
28
- php vendor/bin/phpunit $COVERAGE
22
29
23
30
after_script :
24
- - if [[ $COVERAGE ]]; then php vendor/bin/coveralls; fi
31
+ - if [[ $COVERAGE ]]; then php vendor/bin/php- coveralls; fi
Original file line number Diff line number Diff line change 1
1
# HTTP Request Parser
2
2
3
+ [ ![ ] ( https://img.shields.io/travis/Toflar/http-request-parser/master.svg?style=flat-square )] ( https://travis-ci.org/Toflar/http-request-parser/ )
4
+ [ ![ ] ( https://img.shields.io/coveralls/Toflar/http-request-parser/master.svg?style=flat-square )] ( https://coveralls.io/github/Toflar/http-request-parser )
5
+
3
6
** THIS IS WORK IN PROGRESS WITHOUT ANY RELEASE**
4
7
5
8
This tiny library parses an HTTP request from its raw string representation to PHP superglobal like arrays.
Original file line number Diff line number Diff line change 14
14
},
15
15
"require-dev" : {
16
16
"friendsofphp/php-cs-fixer" : " ^2.6" ,
17
- "phpunit/phpunit" : " ^7.2"
17
+ "phpunit/phpunit" : " ^7.2" ,
18
+ "php-coveralls/php-coveralls" : " ^2.1"
18
19
},
19
20
"autoload" : {
20
21
"psr-4" : {
You can’t perform that action at this time.
0 commit comments