-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathcomposer.json
39 lines (39 loc) · 996 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"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" : "[email protected]",
"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"
]
}
}