richdocuments/composer.json
dependabot[bot] 72292652f4
chore(deps): Bump mikehaertl/php-pdftk from 0.14.0 to 0.14.2
Bumps [mikehaertl/php-pdftk](https://github.com/mikehaertl/php-pdftk) from 0.14.0 to 0.14.2.
- [Release notes](https://github.com/mikehaertl/php-pdftk/releases)
- [Commits](https://github.com/mikehaertl/php-pdftk/compare/0.14.0...0.14.2)

---
updated-dependencies:
- dependency-name: mikehaertl/php-pdftk
  dependency-version: 0.14.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-06 18:24:06 +00:00

59 lines
1.6 KiB
JSON

{
"name": "nextcloud/richdocuments",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"optimize-autoloader": true,
"autoloader-suffix": "Richdocuments"
},
"require": {
"ext-json": "*",
"ext-simplexml": "*",
"mikehaertl/php-pdftk": "^0.14.2",
"league/commonmark": "^2.7",
"phpseclib/phpseclib": "^3.0"
},
"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.0",
"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"
}
}
}