Skip to content

Commit 028b805

Browse files
committed
update dependencies
1 parent d20632c commit 028b805

File tree

7 files changed

+915
-1301
lines changed

7 files changed

+915
-1301
lines changed

.travis.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: php
22

33
php:
4-
- 7.3
5-
- 7.4snapshot
4+
- 7.4
65

76
cache:
87
directories:
@@ -14,15 +13,13 @@ before_script:
1413

1514
install:
1615
- travis_retry composer install --no-interaction --no-suggest
17-
- travis_retry wget -c -nc --retry-connrefused --tries=0 https://scrutinizer-ci.com/ocular.phar
18-
- chmod +x ocular.phar
19-
- composer show
2016

2117
script:
2218
- ./vendor/bin/phpunit --configuration ./phpunit.xml --coverage-clover=coverage.clover
23-
- if [ "$TRAVIS_PHP_VERSION" == "7.4snapshot"]; then ./vendor/bin/psalm --config=psalm.xml; fi
24-
- if [ "$TRAVIS_PHP_VERSION" == "7.4snapshot"]; then ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run; fi
19+
- if [ $TRAVIS_PHP_VERSION = "7.4" ]; then ./vendor/bin/psalm --config=psalm.xml; fi
20+
- if [ $TRAVIS_PHP_VERSION = "7.4" ]; then ./vendor/bin/phpstan analyse src --level 7; fi
21+
- if [ $TRAVIS_PHP_VERSION = "7.4" ]; then ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run; fi
2522

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

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=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)
2+
[![Build Status](https://travis-ci.org/php-service-bus/message-serializer.svg?branch=v4.1)](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.1)](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/?branch=v4.1)
4+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/badges/quality-score.png?b=v4.1)](https://scrutinizer-ci.com/g/php-service-bus/message-serializer/?branch=v4.1)
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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@
2828
}
2929
},
3030
"require": {
31-
"php": ">=7.3",
31+
"php": ">=7.4",
3232
"ext-json": "*",
3333
"ext-iconv": "*",
34-
"php-service-bus/common": "v4.0.*",
35-
"doctrine/annotations": "v1.8.*",
36-
"phpdocumentor/reflection-docblock": "v4.3.*",
34+
"php-service-bus/common": "v4.1.*",
35+
"doctrine/annotations": "v1.10.*",
36+
"phpdocumentor/reflection-docblock": "v5.1.*",
3737
"symfony/property-access": "v5.0.*",
3838
"symfony/property-info": "v5.0.*",
3939
"symfony/serializer": "v5.0.*"
4040
},
4141
"require-dev": {
4242
"php-service-bus/code-style-config": "v1.2.*",
43-
"phpunit/phpunit": "v8.4.*",
44-
"vimeo/psalm": "v3.7.*",
45-
"phpstan/phpstan": "v0.11.*"
43+
"phpunit/phpunit": "v9.1.*",
44+
"vimeo/psalm": "v3.11.*",
45+
"phpstan/phpstan": "v0.12.*"
4646
},
4747
"prefer-stable": true,
4848
"minimum-stability": "stable",

0 commit comments

Comments
 (0)