Skip to content

Commit 06c176d

Browse files
committed
update to php 7.4 version
1 parent 21f16d6 commit 06c176d

19 files changed

+418
-591
lines changed

.travis.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
language: php
22

33
php:
4-
- 7.3
54
- 7.4snapshot
65

7-
matrix:
8-
allow_failures:
9-
- php: 7.4snapshot
10-
116
cache:
127
directories:
138
- $HOME/.cache/composer
@@ -24,10 +19,10 @@ install:
2419

2520
script:
2621
- ./vendor/bin/phpunit --configuration ./phpunit.xml --coverage-clover=coverage.clover
27-
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then ./vendor/bin/psalm --config=psalm.xml; fi
28-
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then ./vendor/bin/phpstan analyse src --level 7; fi
29-
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run; fi
22+
- ./vendor/bin/psalm --config=psalm.xml
23+
- ./vendor/bin/phpstan analyse src --level 7
24+
- ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run
3025

3126
after_script:
32-
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then wget -c -nc --retry-connrefused --tries=0 https://scrutinizer-ci.com/ocular.phar; fi
33-
- if [ "$TRAVIS_PHP_VERSION" == "7.3" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
27+
- wget -c -nc --retry-connrefused --tries=0 https://scrutinizer-ci.com/ocular.phar
28+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## What is it?
2-
[![Build Status](https://travis-ci.org/php-service-bus/message-serializer.svg?branch=v3.3)](https://travis-ci.org/php-service-bus/message-serializer)
3-
[![Code Coverage](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/badges/coverage.png?b=v3.3)](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/?branch=v3.3)
4-
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/badges/quality-score.png?b=v3.3)](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/?branch=v3.3)
2+
[![Build Status](https://travis-ci.org/php-service-bus/message-serializer.svg?branch=v4.0)](https://travis-ci.org/php-service-bus/message-serializer)
3+
[![Code Coverage](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/badges/coverage.png?b=v4.0)](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/?branch=v4.0)
4+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/badges/quality-score.png?b=v4.0)](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/?branch=v4.0)
55

66
This component is part of the [PHP Service Bus](https://github.com/php-service-bus/service-bus). Messages serialization implementation
77

composer.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,20 @@
2828
}
2929
},
3030
"require": {
31-
"php": ">=7.3",
31+
"php": ">=7.4",
3232
"ext-json": "*",
3333
"ext-iconv": "*",
34-
"php-service-bus/common": "v3.3.*",
35-
"symfony/serializer-pack": "v1.0.*"
34+
"php-service-bus/common": "v4.0.*",
35+
"doctrine/annotations": "v1.8.*",
36+
"phpdocumentor/reflection-docblock": "v4.3.*",
37+
"symfony/property-access": "v5.0.*",
38+
"symfony/property-info": "v5.0.*",
39+
"symfony/serializer": "v5.0.*"
3640
},
3741
"require-dev": {
38-
"php-service-bus/code-style-config": "v0.1.*",
39-
"phpunit/phpunit": "v8.3.*",
40-
"vimeo/psalm": "v3.4.*",
42+
"php-service-bus/code-style-config": "v1.1.*",
43+
"phpunit/phpunit": "v8.4.*",
44+
"vimeo/psalm": "v3.7.*",
4145
"phpstan/phpstan": "v0.11.*"
4246
},
4347
"prefer-stable": true,

0 commit comments

Comments
 (0)