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: 73de5624b660295e70fff9791a87931c33c84e2b (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
{
	"repositories": [
		{
			"type": "pear",
			"url": "https://pear.horde.org"
		}
	],
	"config": {
		"platform": {
			"php": "7.1"
		}
	},
	"require": {
		"php": ">=7.1",
		"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",
		"cerdic/css-tidy": "v1.6.5",
		"ezyang/htmlpurifier": "4.10.0",
		"kwi/urllinker": "dev-default",
		"gravatarphp/gravatar": "^2.0",
		"arthurhoaro/favicon": "^1.2"
	},
	"require-dev": {
		"christophwurst/nextcloud": "v16.0.0",
		"christophwurst/nextcloud_testing": "0.6.0",
		"phan/phan": "^2.0"
	},
	"scripts": {
		"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;",
		"phan": "phan --allow-polyfill-parser -k .phan/config.php",
		"test": "phpunit -c tests/phpunit.xml --fail-on-warning",
		"test:unit": "phpunit -c tests/phpunit.xml tests --fail-on-warning",
		"test:unit:dev": "phpunit -c tests/phpunit.xml tests --no-coverage --fail-on-warning"
	}
}