-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "webino/webino",
"description": "Webino™ - The Web Application Platform",
"license": "BSD-3-Clause",
"keywords": [
"webino",
"platform",
"zf2"
],
"homepage": "https://github.com/webino/webino",
"authors": [
{
"name": "Webino, s. r. o.",
"email": "[email protected]",
"homepage": "http://webino.sk",
"role": "Developer"
},
{
"name": "Peter Bacinsky",
"email": "[email protected]",
"homepage": "http://bacinsky.sk",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"ext-intl": "*",
"ext-mbstring": "*",
"zendframework/zend-config": "2.*",
"zendframework/zend-cache": "2.*",
"zendframework/zend-eventmanager": "2.*",
"zendframework/zend-mail": "2.*",
"zendframework/zend-log": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-http": "2.*",
"zendframework/zend-dom": "2.*",
"zendframework/zend-console": "2.*",
"zendframework/zend-version": "2.*",
"zendframework/zend-servicemanager": "2.*",
"ezyang/htmlpurifier": "4.*",
"league/flysystem": "1.*",
"league/flysystem-memory": "1.*",
"bushbaby/flysystem": "1.*",
"tracy/tracy": "2.*",
"psr/log": "1.0.*",
"firephp/firephp-core": "0.*",
"ccampbell/chromephp": "4.*",
"league/climate": "3.*",
"psy/psysh": "0.*"
},
"require-dev": {
"nette/tester": "1.*",
"mikey179/vfsStream": "1.*"
},
"autoload": {
"psr-0": {
"WebinoExceptionLib\\": "library/",
"WebinoConfigLib\\": "library/",
"WebinoEventLib\\": "library/",
"WebinoFilesystemLib\\": "library/",
"WebinoExamplesLib\\": "library/",
"WebinoMailLib\\": "library/",
"WebinoLogLib\\": "library/",
"WebinoDomLib\\": "library/",
"WebinoDevLib\\": "library/",
"WebinoViewLib\\": "library/",
"WebinoHtmlLib\\": "library/",
"WebinoBaseLib\\": "library/",
"WebinoAppLib\\": "library/",
"Webino\\": "library/"
},
"files": ["library/Webino.php", "inc/functions.php"]
}
}