Skip to content

Commit

Permalink
Merge pull request #217 from romainneutron/2.8.0
Browse files Browse the repository at this point in the history
Prepare version 2.8.0
  • Loading branch information
romainneutron committed Mar 2, 2020
2 parents 40d253b + 12e7862 commit c4d55c4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ php:

matrix:
include:
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty

Expand All @@ -34,6 +32,6 @@ install:
- if [[ $TRAVIS_PHP_VERSION == '5.5' ]]; then composer update --prefer-lowest ; fi

script:
- export SYMFONY_DEPRECATIONS_HELPER=weak_vendors
- export SYMFONY_DEPRECATIONS_HELPER=max[self]=0
- export SYMFONY_PHPUNIT_DIR=`pwd`/.phpunit
- ./vendor/bin/simple-phpunit
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2.8.0 (2020-03-02)

* Fixed deprecated/invalid method usage on logger interface
* Drop tests for PHP 5.4

### 2.7.0 (2019-04-03)

* Use base64 for encoding nonces
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
}
],
"require": {
"php": ">5.4",
"paragonie/random_compat": "~1.0|~2.0|9.99.99",
"symfony/framework-bundle": "~2.3|~3.0|~4.0",
"symfony/security": "~2.3|~3.0|~4.0",
Expand All @@ -25,7 +26,7 @@
"psr/cache": "^1.0",
"twig/twig": "^1.24",
"symfony/yaml": "~2.3|~3.0|~4.0",
"symfony/phpunit-bridge": "^3.4.24|~4.0"
"symfony/phpunit-bridge": "~5.0"
},
"suggest": {
"ua-parser/uap-php": "To allow adapt CSP directives given the user-agent"
Expand All @@ -38,7 +39,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.7.x-dev"
"dev-master": "2.8.x-dev"
}
}
}
5 changes: 4 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="Tests/bootstrap.php"
>
<testsuites>
Expand All @@ -17,6 +16,10 @@
</testsuite>
</testsuites>

<php>
<env name="SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT" value="1"/>
</php>

<filter>
<whitelist>
<directory>./</directory>
Expand Down

0 comments on commit c4d55c4

Please sign in to comment.