40 lines
996 B
JSON
40 lines
996 B
JSON
{
|
|
"name" : "ericmann/wp-session-manager",
|
|
"description" : "Prototype session management for WordPress.",
|
|
"version" : "4.2.0",
|
|
"type" : "wordpress-plugin",
|
|
"keywords" : ["session"],
|
|
"homepage" : "https://github.com/ericmann/wp-session-manager",
|
|
"license" : "GPL-2.0-or-later",
|
|
"minimum-stability": "dev",
|
|
"authors" : [
|
|
{
|
|
"name" : "Eric Mann",
|
|
"email" : "eric@eamann.com",
|
|
"homepage": "https://eamann.com",
|
|
"role" : "Developer"
|
|
}
|
|
],
|
|
"require-dev" : {
|
|
"phpunit/phpunit": "^7.5",
|
|
"php-coveralls/php-coveralls": "^2.1",
|
|
"squizlabs/php_codesniffer": "^3.4"
|
|
},
|
|
"require" : {
|
|
"php": ">=7.1",
|
|
"ericmann/sessionz": "^0.3"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"includes/SessionHandler.php",
|
|
"includes/CacheHandler.php",
|
|
"includes/DatabaseHandler.php",
|
|
"includes/Option.php",
|
|
"includes/OptionsHandler.php"
|
|
],
|
|
"files": [
|
|
"includes/deprecated.php"
|
|
]
|
|
}
|
|
}
|