-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
43 lines (43 loc) · 919 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
43
{
"name": "kdyby/fake-session",
"type": "library",
"description": "FakeSession class for Nette Framework",
"keywords": ["nette", "kdyby", "session", "http"],
"homepage": "http://kdyby.org",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Filip Procházka",
"homepage": "http://filip-prochazka.com",
"email": "filip@prochazka.su"
}
],
"support": {
"email": "filip@prochazka.su",
"issues": "https://github.com/Kdyby/FakeSession/issues"
},
"require": {
"php": ">=7.1",
"nette/di": "^3.0-RC1@dev",
"nette/http": "^3.0@dev"
},
"require-dev": {
"nette/utils": "^3.0@dev",
"nette/bootstrap": "^3.0@dev",
"nette/caching": "^3.0@dev",
"nette/tester": "^2.3.2"
},
"autoload": {
"psr-4": {
"Kdyby\\FakeSession\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KdybyTests\\": "tests/KdybyTests/"
},
"classmap": [
"tests/KdybyTests"
]
}
}