-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 920 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": "kappa/application",
"description": "Base application classes for work with Presenters, Forms, etc...",
"keywords": [
"Nette",
"Kappa",
"Application",
"Form",
"Secured",
"Presenters",
"Controllers"
],
"homepage": "https://github.com/Kappa-org/Application",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Ondřej Záruba",
"homepage": "http://zaruba-ondrej.cz"
}
],
"support": {
"email": "zarubaondra@gmail.com",
"issues": "https://github.com/Kappa-org/Application/issues"
},
"require": {
"nette/application": "~2.2@dev",
"nette/di": "~2.2@dev"
},
"require-dev": {
"nette/tester": "~1.0@dev",
"mockery/mockery": "~0.9@dev",
"nette/nette": "~2.2@dev"
},
"autoload": {
"psr-4": {
"Kappa\\Application\\": "src/"
},
"files": [
"src/exceptions.php"
]
}
}