Skip to content
This repository was archived by the owner on Dec 22, 2025. It is now read-only.

Commit 66d4223

Browse files
committed
Added psr/log to requirements
1 parent 0389d07 commit 66d4223

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ php:
77

88
script:
99
- composer install -n
10-
- vendor/bin/phpunit --coverage-clover=coverage.xml
11-
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ]; then bash <(curl -s https://codecov.io/bash); fi
10+
- vendor/bin/phpunit
1211
- rm -rf vendor
1312
- composer update --prefer-lowest -n
14-
- vendor/bin/phpunit
13+
- vendor/bin/phpunit --coverage-clover=coverage.xml
14+
15+
after_success:
16+
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ]; then bash <(curl -s https://codecov.io/bash); fi

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"php": ">= 5.6",
1616
"league/statsd": "^1.4",
1717
"psr/http-message": "^1.0",
18-
"behat/transliterator": "^1.2"
18+
"behat/transliterator": "^1.2",
19+
"psr/log": "^1.0"
1920
},
2021
"require-dev": {
2122
"friendsofphp/php-cs-fixer": "^2.3",

0 commit comments

Comments
 (0)