Skip to content

Commit afa9865

Browse files
authored
Add dependency to lcobucci/jwt (#51)
* Add dependency to lcobucci/jwt * compat with PHP 7.1 * changelog
1 parent 902fbc1 commit afa9865

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ cache:
1515
- $HOME/.composer/cache
1616

1717
before_install:
18-
- if [[ $lint = '1' ]]; then composer require --no-update --dev lcobucci/jwt:^4.0; fi
1918
- if [[ $lint = '1' ]]; then wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.18.4/php-cs-fixer.phar; fi
2019
- if [[ $lint = '1' ]]; then wget https://github.com/phpstan/phpstan/releases/download/0.12.82/phpstan.phar; fi
2120

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
CHANGELOG
22
=========
33

4+
0.3.2
5+
-----
6+
7+
* Full compatibility with PHP 7.1
8+
* Enable JWT support by default
9+
410
0.3.1
511
-----
612

7-
* Add a configuration option to set a defaut expiration for the JWT and the cookie when using the `Authorization` class
13+
* Add a configuration option to set a default expiration for the JWT and the cookie when using the `Authorization` class
814

915
0.3.0
1016
-----

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@
1717
],
1818
"require": {
1919
"php": ">=7.1.3",
20+
"lcobucci/jwt": "^3.4|^4.0",
2021
"symfony/config": "^4.4|^5.0",
2122
"symfony/dependency-injection": "^4.4|^5.0",
2223
"symfony/http-kernel": "^4.4|^5.0",
23-
"symfony/mercure": "^0.5",
24+
"symfony/mercure": "^0.5.3",
2425
"symfony/web-link": "^4.4|^5.0"
2526
},
2627
"autoload": {

0 commit comments

Comments
 (0)