-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 1006 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
{
"name": "org/Yet-Another-Web-Stack/php-memcached-session",
"description": "Provides a sessionhandler for php and memcached",
"license": "MIT",
"type": "library",
"keywords": ["session", "php", "memcached"],
"homepage": "https://github.com/Yet-Another-Web-Stack/Session-PHP-Memcached",
"authors": [
{
"name": "Björn Büttner",
"email": "[email protected]",
"homepage": "https://github.com/Yet-Another-Web-Stack",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Org\\YetAnotherWebStack\\PhpMemcachedSession\\": "src/"
}
},
"support": {
"issues": "https://github.com/Yet-Another-Web-Stack/Session-PHP-Memcached/issues",
"source": "https://github.com/Yet-Another-Web-Stack/Session-PHP-Memcached"
},
"require": {
"php": ">=5.6.0",
"ext-memcached": "*",
"rdlowrey/auryn": "*",
"psr/log": "*"
}
}