forked from owncloud/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.31 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": "owncloud/core",
"description": "A safe home for all your data",
"license": "AGPL-1.0",
"config" : {
"vendor-dir": "lib/composer",
"optimize-autoloader": true,
"classmap-authoritative": false,
"platform": {
"php": "7.2"
}
},
"autoload" : {
"psr-4": {
"OC\\": "lib/private",
"OC\\Core\\": "core/",
"OC\\Settings\\": "settings/",
"OCP\\": "lib/public"
},
"classmap": ["lib/private/legacy"]
},
"autoload-dev" : {
"files": ["tests/lib/TestCase.php"]
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"jakub-onderka/php-console-highlighter": "^0.4",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master"
},
"require": {
"php": ">=7.2",
"doctrine/dbal": "^2.10",
"phpseclib/phpseclib": "^2.0",
"opis/closure": "^3.5",
"bantu/ini-get-wrapper": "v1.0.1",
"punic/punic": "^3.5",
"pear/archive_tar": "1.4.11",
"patchwork/utf8": "^1.3",
"symfony/console": "^4.4",
"symfony/event-dispatcher": "^4.4",
"symfony/routing": "^4.4",
"symfony/process": "^4.4",
"pimple/pimple": "3.2.3",
"nikic/php-parser": "^4.4",
"icewind/streams": "0.7.2",
"swiftmailer/swiftmailer": "^6.2",
"guzzlehttp/guzzle": "^5.3",
"league/flysystem": "^1.0",
"pear/pear-core-minimal": "^v1.10",
"interfasys/lognormalizer": "^v1.0",
"deepdiver1975/tarstreamer": "v2.0.0",
"patchwork/jsqueeze": "^2.0",
"christophwurst/id3parser": "^0.1.1",
"sabre/dav": "^4.1",
"sabre/http": "^5.1",
"deepdiver/zipstreamer": "^2.0",
"symfony/translation": "^4.4",
"laminas/laminas-inputfilter": "^2.10",
"laminas/laminas-servicemanager": "^3.4",
"laminas/laminas-validator": "^2.13",
"composer/semver": "^3.0",
"ext-json": "*",
"sabre/vobject": "^4.3",
"dg/composer-cleaner": "^2.1"
},
"extra": {
"bamarni-bin": {
"bin-links": false
},
"cleaner-ignore": {
"phpunit/phpunit": ["phpunit.xsd"]
}
}
}