Skip to content

Commit

Permalink
chore(composer): set min php 7, add test script
Browse files Browse the repository at this point in the history
  • Loading branch information
adhocore committed Dec 13, 2019
1 parent c5f481b commit b4a317e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Ultra lightweight JSON web token (JWT) library for PHP5.5+.",
"type": "library",
"keywords": [
"jwt", "jwt-php", "auth", "json-web-token", "token"
"jwt", "jwt-php", "auth", "json-web-token", "token", "jwt-auth"
],
"license": "MIT",
"authors": [
Expand All @@ -23,9 +23,12 @@
}
},
"require": {
"php": ">=5.5"
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5"
"phpunit/phpunit": "^6.5 || ^7.5"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}

0 comments on commit b4a317e

Please sign in to comment.