Skip to content

Commit f9e0208

Browse files
committed
version 3.0 release
1 parent 65af837 commit f9e0208

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: php
2+
3+
php:
4+
- 7.2
5+
- 7.3
6+
7+
cache:
8+
directories:
9+
- $HOME/.cache/composer
10+
11+
before_script:
12+
- mkdir -p build/logs
13+
14+
install:
15+
- travis_retry composer install --no-interaction --no-suggest
16+
- travis_retry wget -c -nc --retry-connrefused --tries=0 https://scrutinizer-ci.com/ocular.phar
17+
- chmod +x ocular.phar
18+
19+
script:
20+
- ./vendor/bin/phpunit --configuration ./phpunit.xml --coverage-clover=coverage.clover
21+
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then ./vendor/bin/psalm --config=psalm.xml; fi
22+
23+
after_script:
24+
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then wget -c -nc --retry-connrefused --tries=0 https://scrutinizer-ci.com/ocular.phar; fi
25+
- if [ "$TRAVIS_PHP_VERSION" == "7.2" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"description": "PHP Service Bus skeleton",
44
"type": "project",
55
"license": "MIT",
6-
"minimum-stability": "dev",
6+
"minimum-stability": "stable",
77
"require": {
88
"php": ">=7.2",
99
"ext-json": "*",
10-
"php-service-bus/service-bus": "v3.0.x-dev",
10+
"php-service-bus/service-bus": "^v3.0",
1111
"php-service-bus/module-phpinnacle-transport": "^v3.0"
1212
},
1313
"require-dev": {

0 commit comments

Comments
 (0)