-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,19 @@ | ||
{ | ||
"name": "byjg/jwt-session", | ||
"description": "JwtSession is a PHP session replacement. Instead of use FileSystem, just use JWT TOKEN. The implementation following the SessionHandlerInterface.", | ||
"authors": [ | ||
{ | ||
"name": "João Gilberto Magalhães", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"ByJG\\Session\\": "src/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"require": { | ||
"php": ">=5.6.0", | ||
"byjg/jwt-wrapper": "2.0.*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "5.7.*|7.4.*" | ||
}, | ||
"license": "MIT" | ||
"name": "byjg/jwt-session", | ||
"description": "JwtSession is a PHP session replacement. Instead of use FileSystem, just use JWT TOKEN. The implementation following the SessionHandlerInterface.", | ||
"autoload": { | ||
"psr-4": { | ||
"ByJG\\Session\\": "src/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"require": { | ||
"php": ">=5.6.0", | ||
"byjg/jwt-wrapper": "2.0.*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "5.7.*|7.4.*" | ||
}, | ||
"license": "MIT" | ||
} |