0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/composer.json

54 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "postfixadmin/postfixadmin",
"description": "web based administration interface for Postfix mail servers",
"type": "project",
2022-06-28 15:02:18 +02:00
"license": "GPL-2.0-only",
2021-10-22 23:35:04 +02:00
"config": {
"preferred-install":"dist"
},
"scripts": {
2018-12-28 20:29:14 +01:00
"build" : [
2018-12-28 20:32:22 +01:00
"@check-format",
2018-12-28 20:29:14 +01:00
"@lint",
2018-12-29 23:03:32 +01:00
"@test-fixup",
"@psalm",
"@test"
2018-12-28 20:29:14 +01:00
],
2020-12-23 17:44:13 +01:00
"check-format": "@php vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
"format": "@php vendor/bin/php-cs-fixer fix --ansi",
2021-06-11 22:55:02 +02:00
"lint": "@php ./vendor/bin/parallel-lint --exclude vendor/ .",
"test": "@php ./vendor/bin/phpunit --coverage-clover ./clover.xml tests/",
2018-12-29 23:03:32 +01:00
"test-fixup": "mkdir -p templates_c ; test -f config.local.php || touch config.local.php",
2021-01-18 23:15:42 +01:00
"psalm": "@php ./vendor/bin/psalm --no-cache --show-info=false "
},
"require": {
"php": ">=7.2",
"smarty/smarty": "^3|^4",
2021-10-02 21:07:18 +02:00
"postfixadmin/password-hashing": "^0.0.1"
},
"require-dev": {
"ext-mysqli": "*",
2019-02-18 21:31:31 +01:00
"ext-sqlite3": "*",
"ext-mbstring": "*",
2021-09-29 22:10:22 +02:00
"friendsofphp/php-cs-fixer": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.0",
2019-02-18 21:31:31 +01:00
"php": ">7.2.0",
2021-06-11 22:55:02 +02:00
"php-coveralls/php-coveralls": "*",
"phpunit/phpunit": "8.*",
2020-11-09 22:30:32 +01:00
"vimeo/psalm":"^4.0",
"shardj/zf1-future" : "^1.12"
},
"autoload": {
2021-07-07 22:41:59 +02:00
"classmap" : [ "model/" ],
"files": [
"config.inc.php",
"functions.inc.php"
]
2020-05-10 14:01:33 +02:00
},
"support": {
"irc": "irc://irc.freenode.org/postfixadmin",
"issues": "https://github.com/postfixadmin/postfixadmin/issues",
"chat": "https://gitter.im/postfixadmin/Lobby"
}
}