mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 20:18:52 +02:00
# Conflicts: # composer.json # composer.lock # core/config.class.inc.php # core/dbobject.class.php # core/email.class.inc.php # datamodels/2.x/itop-core-update/dictionaries/hu.dict.itop-core-update.php # datamodels/2.x/itop-core-update/dictionaries/it.dict.itop-core-update.php # datamodels/2.x/itop-core-update/dictionaries/ja.dict.itop-core-update.php # datamodels/2.x/itop-core-update/dictionaries/nl.dict.itop-core-update.php # datamodels/2.x/itop-core-update/dictionaries/ru.dict.itop-core-update.php # datamodels/2.x/itop-core-update/dictionaries/sk.dict.itop-core-update.php # datamodels/2.x/itop-core-update/dictionaries/tr.dict.itop-core-update.php # datamodels/2.x/itop-core-update/dictionaries/zh_cn.dict.itop-core-update.php # datamodels/2.x/itop-core-update/pt_br.dict.itop-core-update.php # datamodels/2.x/itop-core-update/view/ConfirmUpdate.html.twig # datamodels/2.x/itop-portal-base/portal/src/Twig/AppExtension.php # datamodels/2.x/itop-tickets/datamodel.itop-tickets.xml # datamodels/2.x/itop-welcome-itil/datamodel.itop-welcome-itil.xml # dictionaries/cs.dictionary.itop.core.php # dictionaries/cs.dictionary.itop.ui.php # dictionaries/da.dictionary.itop.core.php # dictionaries/da.dictionary.itop.ui.php # dictionaries/de.dictionary.itop.core.php # dictionaries/de.dictionary.itop.ui.php # dictionaries/en.dictionary.itop.ui.php # dictionaries/es_cr.dictionary.itop.core.php # dictionaries/es_cr.dictionary.itop.ui.php # dictionaries/fr.dictionary.itop.core.php # dictionaries/fr.dictionary.itop.ui.php # dictionaries/hu.dictionary.itop.core.php # dictionaries/hu.dictionary.itop.ui.php # dictionaries/it.dictionary.itop.core.php # dictionaries/it.dictionary.itop.ui.php # dictionaries/ja.dictionary.itop.core.php # dictionaries/ja.dictionary.itop.ui.php # dictionaries/nl.dictionary.itop.core.php # dictionaries/nl.dictionary.itop.ui.php # dictionaries/pt_br.dictionary.itop.core.php # dictionaries/pt_br.dictionary.itop.ui.php # dictionaries/ru.dictionary.itop.core.php # dictionaries/ru.dictionary.itop.ui.php # dictionaries/sk.dictionary.itop.core.php # dictionaries/sk.dictionary.itop.ui.php # dictionaries/tr.dictionary.itop.core.php # dictionaries/tr.dictionary.itop.ui.php # dictionaries/zh_cn.dictionary.itop.core.php # dictionaries/zh_cn.dictionary.itop.ui.php # lib/composer/autoload_classmap.php # lib/composer/autoload_real.php # lib/composer/autoload_static.php # lib/composer/installed.json # lib/composer/installed.php # sources/application/TwigBase/Controller/Controller.php # sources/application/TwigBase/Twig/TwigHelper.php
72 lines
2.2 KiB
JSON
72 lines
2.2 KiB
JSON
{
|
|
"name": "laminas/laminas-mail",
|
|
"description": "Provides generalized functionality to compose and send both text and MIME-compliant multipart e-mail messages",
|
|
"license": "BSD-3-Clause",
|
|
"keywords": [
|
|
"laminas",
|
|
"mail"
|
|
],
|
|
"homepage": "https://laminas.dev",
|
|
"support": {
|
|
"docs": "https://docs.laminas.dev/laminas-mail/",
|
|
"issues": "https://github.com/laminas/laminas-mail/issues",
|
|
"source": "https://github.com/laminas/laminas-mail",
|
|
"rss": "https://github.com/laminas/laminas-mail/releases.atom",
|
|
"chat": "https://laminas.dev/chat",
|
|
"forum": "https://discourse.laminas.dev"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laminas": {
|
|
"component": "Laminas\\Mail",
|
|
"config-provider": "Laminas\\Mail\\ConfigProvider"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^7.1",
|
|
"ext-iconv": "*",
|
|
"laminas/laminas-loader": "^2.5",
|
|
"laminas/laminas-mime": "^2.5",
|
|
"laminas/laminas-stdlib": "^2.7 || ^3.0",
|
|
"laminas/laminas-validator": "^2.10.2",
|
|
"laminas/laminas-zendframework-bridge": "^1.0",
|
|
"true/punycode": "^2.1"
|
|
},
|
|
"require-dev": {
|
|
"laminas/laminas-coding-standard": "~1.0.0",
|
|
"laminas/laminas-config": "^2.6",
|
|
"laminas/laminas-crypt": "^2.6 || ^3.0",
|
|
"laminas/laminas-servicemanager": "^3.2.1",
|
|
"phpunit/phpunit": "^7.5.20"
|
|
},
|
|
"suggest": {
|
|
"laminas/laminas-crypt": "Crammd5 support in SMTP Auth",
|
|
"laminas/laminas-servicemanager": "^2.7.10 || ^3.3.1 when using SMTP to deliver messages"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Laminas\\Mail\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"LaminasTest\\Mail\\": "test/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs-check",
|
|
"@test"
|
|
],
|
|
"cs-check": "phpcs",
|
|
"cs-fix": "phpcbf",
|
|
"test": "phpunit --colors=always",
|
|
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
|
|
},
|
|
"replace": {
|
|
"zendframework/zend-mail": "^2.10.0"
|
|
}
|
|
}
|