-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.07 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
{
"name": "rwarasaurus/session",
"description": "Session wrapper",
"license": "GPL-3.0",
"type": "library",
"authors": [
{
"name": "Kieron",
"homepage": "http://madebykieron.co.uk",
"role": "Developer"
}
],
"require": {
"php": "^7"
},
"require-dev": {
"phpspec/phpspec": "~2",
"friendsofphp/php-cs-fixer": "~2"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Session\\": "src/"
}
},
"suggest": {
"league/flysystem": "File system session storage",
"predis/predis": "Redis session storage",
"ext-redis": "Redis session storage"
},
"scripts": {
"psr": [
"./bin/php-cs-fixer fix src/ --allow-risky=yes --rules=@PSR2,no_unused_imports,ordered_imports,ordered_interfaces,single_quote,trailing_comma_in_multiline_array"
],
"uninstall": [
"rm -rf ./bin",
"rm -rf ./vendor",
"rm ./composer.lock"
]
}
}