mail/composer.json

92 строки
2.9 KiB
JSON

{
"config": {
"platform": {
"php": "8.0"
},
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"optimize-autoloader": true,
"autoloader-suffix": "Mail"
},
"require": {
"php": ">=8.0 <=8.3",
"ext-openssl": "*",
"arthurhoaro/favicon": "^2.0.0",
"bamarni/composer-bin-plugin": "^1.8.2",
"bytestream/horde-exception": "^2.2.0",
"bytestream/horde-imap-client": "^2.33.1",
"bytestream/horde-mail": "^2.7.1",
"bytestream/horde-mime": "^2.13.0",
"bytestream/horde-stream": "^1.7.1",
"bytestream/horde-stringprep": "^1.2.1",
"bytestream/horde-support": "^2.4.0",
"bytestream/horde-text-filter": "^2.5.0",
"bytestream/horde-text-flowed": "^2.1",
"bytestream/horde-util": "^2.7.0",
"cerdic/css-tidy": "v2.1.0",
"ezyang/htmlpurifier": "4.17.0",
"gravatarphp/gravatar": "dev-master#6b9f6a45477ce48285738d9d0c3f0dbf97abe263",
"hamza221/html2text": "^1.0",
"nextcloud/horde-managesieve": "^1.0",
"nextcloud/horde-smtp": "^1.0.2",
"nextcloud/kitinerary": "^1.0",
"nextcloud/kitinerary-bin": "^1.0",
"nextcloud/kitinerary-flatpak": "^1.0",
"nextcloud/kitinerary-sys": "^1.0",
"phpmailer/dkimvalidator": "^0.3.0",
"psr/log": "^1",
"rubix/ml": "2.4.0",
"sabberworm/php-css-parser": "^8.4.0",
"youthweb/urllinker": "^2.0"
},
"require-dev": {
"nextcloud/ocp": "dev-stable26",
"psalm/phar": "^5.14.1",
"roave/security-advisories": "dev-master"
},
"autoload": {
"files": [
"lib/functions.php"
],
"psr-4": {
"OCA\\Mail\\": "lib/"
}
},
"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"
],
"rector": "rector process",
"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"
]
}
}
}