-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 979 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
40
41
42
{
"name": "chillerlan/php-session",
"description": "A simple encrypted session handler. PHP 7+",
"homepage": "https://github.com/chillerlan/php-session",
"license": "MIT",
"type": "library",
"minimum-stability": "stable",
"authors": [
{
"name": "Smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-session/issues",
"source": "https://github.com/chillerlan/php-session"
},
"require": {
"php": "^7.2",
"chillerlan/php-settings-container": "^1.0",
"chillerlan/php-dotenv": "^1.0",
"psr/log": "^1.0",
"chillerlan/php-log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"chillerlan/php-cache": "^3.1",
"chillerlan/php-database": "^3.0",
"chillerlan/php-filereader": "^2.0"
},
"autoload": {
"psr-4": {
"chillerlan\\Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\SessionTest\\": "tests/"
}
}
}