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

43 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "postfixadmin/postfixadmin",
"description": "web based administration interface for Postfix mail servers",
"type": "project",
"license": "GPL-2.0",
"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
],
2017-10-11 10:25:29 +02:00
"check-format": "php-cs-fixer fix --ansi --dry-run --diff",
"format": "php-cs-fixer fix --ansi",
"lint": "@php ./vendor/bin/parallel-lint --exclude vendor/ --exclude lib/block_random_int.php --exclude lib/array_column.php .",
"test": "DATABASE=sqlite ./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",
2020-04-14 22:25:25 +02:00
"psalm": "@php ./vendor/bin/psalm --show-info=false "
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"ext-mysqli": "*",
2019-02-18 21:31:31 +01:00
"ext-sqlite3": "*",
"friendsofphp/php-cs-fixer": "*",
"php-parallel-lint/php-parallel-lint": "^1.0",
2019-02-18 21:31:31 +01:00
"php": ">7.2.0",
"cedx/coveralls": "^11.0",
"phpunit/phpunit": "8.*",
2019-10-19 21:32:00 +02:00
"vimeo/psalm":"^3.0",
"shardj/zf1-future" : "^1.12"
},
"autoload": {
"files": [
"config.inc.php",
2019-10-20 21:38:45 +02:00
"functions.inc.php",
"lib/smarty/libs/bootstrap.php"
]
}
}