-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.14 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.14 KB
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
{
"name": "ionscript/ions-session",
"description": "manage and preserve session data, a logical complement of cookie data, across multiple page requests by the same client",
"license": "GPL-3.0+",
"minimum-stability": "dev",
"authors": [
{
"name": "Serge Shportko",
"email": "ionscript.inc@gmail.com"
}
],
"keywords": [
"ions",
"session"
],
"homepage": "https://github.com/ionscript/ions-session",
"autoload": {
"psr-4": {
"Ions\\Session\\": "src/"
}
},
"require": {
"php": "^7.0 || ^5.6",
"ionscript/ions-std": "master",
"ionscript/ions-db": "master",
"ionscript/ions-cache": "master"
},
"require-dev": {},
"autoload-dev": {},
"repositories": [
{
"type": "git",
"url": "https://github.com/ionscript/ions-std.git"
},
{
"type": "git",
"url": "https://github.com/ionscript/ions-db.git"
},
{
"type": "git",
"url": "https://github.com/ionscript/ions-cache.git"
}
]
}