Welcome to mirror list, hosted at ThFree Co, Russian Federation.

composer.json - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecb1a7898bb99d19008d5543484a476dfee7331a (plain)
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
84
85
86
87
88
89
{
	"repositories": [
		{
			"type": "vcs",
			"url": "https://github.com/kwi-dk/UrlLinker",
			"branch": "bleeding"
		}
	],
	"config": {
		"platform": {
			"php": "7.4"
		},
		"sort-packages": true,
		"allow-plugins": {
			"bamarni/composer-bin-plugin": true
		}
	},
	"require": {
		"php": ">=7.4 <=8.1",
		"arthurhoaro/favicon": "^1.2",
		"bamarni/composer-bin-plugin": "^1.4",
		"bytestream/horde-exception": "^2.1",
		"bytestream/horde-imap-client": "^2.31",
		"bytestream/horde-mail": "^2.7",
		"bytestream/horde-mime": "^2.12",
		"bytestream/horde-stream": "^1.7",
		"bytestream/horde-stringprep": "^1.1",
		"bytestream/horde-support": "^2.3",
		"bytestream/horde-text-filter": "^2.4",
		"bytestream/horde-text-flowed": "^2.1",
		"bytestream/horde-util": "^2.6",
		"cerdic/css-tidy": "v2.0.1",
		"christophwurst/kitinerary": "^0.2",
		"christophwurst/kitinerary-bin": "^0.2",
		"christophwurst/kitinerary-flatpak": "^0.2",
		"christophwurst/kitinerary-sys": "^0.1.0",
		"ezyang/htmlpurifier": "4.14.0",
		"gravatarphp/gravatar": "^2.0",
		"nextcloud/horde-managesieve": "^1.0",
		"nextcloud/horde-smtp": "^1.0",
		"psr/log": "^1",
		"rubix/ml": "0.4.2",
		"sabberworm/php-css-parser": "^8.3",
		"youthweb/urllinker": "^1.3"
	},
	"require-dev": {
		"christophwurst/nextcloud": "^21.0.0",
		"psalm/phar": "^4.6",
		"roave/security-advisories": "dev-master"
	},
	"autoload": {
		"files": [
			"lib/functions.php"
		]
	},
	"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",
		"psalm": "psalm.phar",
		"psalm:fix": "psalm.phar --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType",
		"post-install-cmd": [
			"@composer bin all install --ansi",
			"\"vendor/bin/mozart\" compose",
			"composer dump-autoload"
		],
		"post-update-cmd": [
			"@composer bin all update --ansi",
			"\"vendor/bin/mozart\" compose",
			"composer dump-autoload"
		],
		"test:integration": "phpunit -c tests/phpunit.integration.xml --fail-on-warning",
		"test:integration:dev": "phpunit -c tests/phpunit.integration.xml --no-coverage --order-by=defects --stop-on-defect --fail-on-warning --stop-on-error --stop-on-failure",
		"test:unit": "phpunit -c tests/phpunit.unit.xml --fail-on-warning",
		"test:unit:dev": "phpunit -c tests/phpunit.unit.xml --no-coverage --order-by=defects --stop-on-defect --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"
			]
		}
	}
}