-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
52 lines (52 loc) · 1.92 KB
/
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
43
44
45
46
47
48
49
50
51
52
{
"name": "joomla/session",
"type": "joomla-package",
"description": "Joomla Session Package",
"keywords": ["joomla", "framework", "session"],
"homepage": "https://github.com/joomla-framework/session",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0",
"symfony/deprecation-contracts": "^2|^3"
},
"require-dev": {
"joomla/console": "^3.0",
"joomla/database": "^3.0",
"joomla/utilities": "^3.0",
"joomla/event": "^3.0",
"joomla/input": "^3.0",
"joomla/test": "^3.0",
"phpunit/phpunit": "^9.5.28",
"squizlabs/php_codesniffer": "^3.7.2",
"phpstan/phpstan": "^1.10.7",
"phan/phan": "^5.4.2"
},
"suggest": {
"joomla/console": "Install joomla/console if you want to use the CreateSessionTableCommand class.",
"joomla/database": "Install joomla/database if you want to use a database connection managed with Joomla\\Database\\DatabaseDriver as a session handler.",
"joomla/event": "The joomla/event package is required to use Joomla\\Session\\Session.",
"joomla/input": "The joomla/input package is required to use Address and Forwarded session validators.",
"ext-apcu": "To use APCu cache as a session handler",
"ext-memcached": "To use a Memcached server as a session handler",
"ext-redis": "To use a Redis server as a session handler",
"ext-session": "To use the Joomla\\Session\\Storage\\NativeStorage storage class.",
"ext-wincache": "To use WinCache as a session handler"
},
"autoload": {
"psr-4": {
"Joomla\\Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Session\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.x-dev",
"dev-3.x-dev": "3.0-dev"
}
}
}