mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-18 05:20:43 +01:00
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 1.3.2 to 1.4.0. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v1.3.2...v1.4.0) --- updated-dependencies: - dependency-name: nextcloud/coding-standard dependency-version: 1.4.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "nextcloud/richdocuments",
|
|
"type": "project",
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.1"
|
|
},
|
|
"allow-plugins": {
|
|
"bamarni/composer-bin-plugin": true
|
|
},
|
|
"optimize-autoloader": true,
|
|
"autoloader-suffix": "Richdocuments"
|
|
},
|
|
"require": {
|
|
"ext-json": "*",
|
|
"ext-simplexml": "*",
|
|
"mikehaertl/php-pdftk": "^0.13.1",
|
|
"league/commonmark": "^2.6"
|
|
},
|
|
"require-dev": {
|
|
"roave/security-advisories": "dev-master",
|
|
"jakub-onderka/php-parallel-lint": "^1.0.0",
|
|
"psalm/phar": "^6.5",
|
|
"friendsofphp/php-cs-fixer": "^3.8",
|
|
"nextcloud/coding-standard": "^1.4",
|
|
"nextcloud/ocp": "dev-master",
|
|
"phpunit/phpunit": "^9.5",
|
|
"bamarni/composer-bin-plugin": "^1.8"
|
|
},
|
|
"license": "AGPLv3",
|
|
"authors": [
|
|
{
|
|
"name": "Julius Härtl",
|
|
"email": "jus@bitgrid.net"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"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",
|
|
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml",
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"test:unit": "vendor/bin/phpunit -c tests/phpunit.xml"
|
|
},
|
|
"autoload" : {
|
|
"psr-4": {
|
|
"OCA\\Richdocuments\\": "./lib/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"OCP\\": "vendor/nextcloud/ocp/OCP"
|
|
}
|
|
}
|
|
}
|