forked from nextcloud/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.73 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
77
78
79
80
81
82
83
{
"repositories": [
{
"type": "pear",
"url": "https://pear.horde.org"
},
{
"type": "vcs",
"url": "https://github.com/kwi-dk/UrlLinker",
"branch": "bleeding"
}
],
"config": {
"platform": {
"php": "7.2"
}
},
"require": {
"php": ">=7.2",
"arthurhoaro/favicon": "^1.2",
"cerdic/css-tidy": "v1.7.1",
"christophwurst/kitinerary": "^0.2",
"christophwurst/kitinerary-bin": "^0.2",
"christophwurst/kitinerary-flatpak": "^0.2",
"christophwurst/kitinerary-sys": "^0.1.0",
"coenjacobs/mozart": "0.6.0-beta-2",
"ezyang/htmlpurifier": "4.12.0",
"gravatarphp/gravatar": "^2.0",
"kwi/urllinker": "dev-bleeding",
"pear-pear.horde.org/horde_date": "^2.4.1@stable",
"pear-pear.horde.org/horde_exception": "^2.0.8@stable",
"pear-pear.horde.org/horde_imap_client": "^2.29.16@stable",
"pear-pear.horde.org/horde_mail": "^2.6.4@stable",
"pear-pear.horde.org/horde_mime": "^2.11.0@stable",
"pear-pear.horde.org/horde_nls": "^2.2.1@stable",
"pear-pear.horde.org/horde_stream": "^1.6.3@stable",
"pear-pear.horde.org/horde_support": "^2.2.0@stable",
"pear-pear.horde.org/horde_text_filter": "^2.3.5@stable",
"pear-pear.horde.org/horde_text_flowed": "^2.0.3@stable",
"pear-pear.horde.org/horde_util": "^2.5.8@stable",
"pear-pear.horde.org/horde_smtp": "^1.9.5@stable",
"psr/log": "^1",
"rubix/ml": "0.1.0-rc3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"christophwurst/nextcloud": "^v18.0.0",
"christophwurst/nextcloud_testing": "0.10.0",
"nextcloud/coding-standard": "^0.3.0",
"phan/phan": "^3.0",
"vimeo/psalm": "^3.9"
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"phan": "phan --allow-polyfill-parser -k .phan/config.php",
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"test:integration": "phpunit -c tests/phpunit.integration.xml tests/Integration --fail-on-warning",
"test:integration:dev": "phpunit -c tests/phpunit.integration.xml tests/Integration --no-coverage --fail-on-warning --stop-on-error --stop-on-failure",
"test:unit": "phpunit -c tests/phpunit.unit.xml tests/Unit --fail-on-warning",
"test:unit:dev": "phpunit -c tests/phpunit.unit.xml tests/Unit --no-coverage --fail-on-warning --stop-on-error --stop-on-failure"
},
"extra": {
"mozart": {
"dep_namespace": "OCA\\Mail\\Vendor\\",
"dep_directory": "/lib/Vendor/",
"classmap_directory": "/lib/autoload/",
"classmap_prefix": "NEXTCLOUDMAIL_",
"packages": [
"arthurhoaro/favicon",
"gravatarphp/gravatar"
]
}
}
}