-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 957 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": "moviet/session-scary",
"description": "A simple session organizer library for php",
"keywords": ["session", "handler", "wrapper", "token", "manager", "global", "organizer", "php-session"],
"homepage": "https://github.com/moviet/session-scary",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Moviet",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"Moviet\\Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Moviet\\Testing\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v1.0-dev"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"minimum-stability": "dev"
}