-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (50 loc) · 1.12 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name" : "ipub/gravatar",
"type" : "library",
"description" : "Gravatar creator for Nette Framework",
"keywords" : ["nette", "gravatar", "tools", "ipub", "ipublikuj"],
"homepage" : "https://github.com/iPublikuj/gravatar",
"license" : ["GPL-2.0", "GPL-3.0"],
"authors": [
{
"name" : "iPublikuj:cms",
"email" : "info@ipublikuj.eu",
"homepage" : "https://www.ipublikuj.eu/"
}
],
"support": {
"email" :"support@ipublikuj.eu",
"issues" :"https://github.com/iPublikuj/gravatar/issues"
},
"extra": {
"ipub" : {
"configuration" : {
"extensions" : {
"gravatar" : "IPub\\Gravatar\\DI\\GravatarExtension"
}
}
}
},
"require": {
"php" : ">=7.1.0",
"nette/application" : "~2.4",
"nette/di" : "~2.4",
"nette/http" : "~2.4",
"nette/utils" : "~2.4",
"latte/latte" : "~2.4"
},
"require-dev": {
"nette/bootstrap" : "~2.4",
"nette/mail" : "~2.4",
"nette/robot-loader" : "~2.4",
"nette/safe-stream" : "~2.3",
"nette/tester" : "~2.0",
"tracy/tracy" : "~2.4",
"pds/skeleton" : "~1.0"
},
"autoload": {
"psr-0": {
"IPub\\Gravatar\\": "src/"
}
}
}