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

composer.json - github.com/nextcloud/bookmarks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ad7b38593a4cddadc521d48daa6fd18b5307c08 (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
{
	"require": {
		"doctrine/inflector": "1.4.*",
		"ext-dom": "*",
		"ext-json": "*",
		"ext-libxml": "*",
		"ext-pdo": "*",
		"guzzlehttp/psr7": "^2",
		"marcelklehr/link-preview": "^3.0.5",
		"pguardiario/phpuri": "1.0.*",
		"psr/http-client": "^1.0",
		"psr/http-factory": "^1.0",
		"psr/http-message": "^1.0",
		"rowbot/url": "^3.0",
		"xantios/mimey": "^2.1",
		"marcelklehr/readability.php": "^3.0"
	},
	"require-dev": {
		"phpunit/phpunit": "^8.5",
		"nextcloud/coding-standard": "^1.0.0",
		"vimeo/psalm": "^4",
		"christophwurst/nextcloud": "v24.0.0"
	},
	"config": {
		"optimize-autoloader": true,
		"classmap-authoritative": true
	},
	"autoload": {
		"psr-4": {
			"OCA\\Bookmarks\\": "lib/"
		}
	},
	"scripts": {
		"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
        "cs:check": "php-cs-fixer fix --dry-run --diff",
        "cs:fix": "php-cs-fixer fix",
		"psalm": "psalm  --output-format=github --no-progress --no-cache --use-baseline=psalm-baseline.xml",
		"psalm-new-baseline": "psalm  --output-format=github --no-progress --no-cache --set-baseline=psalm-baseline.xml",
		"psalm-ui": "psalm --no-cache"
	}
}