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

42 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"
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 .",
2019-02-18 21:31:31 +01:00
"test": "DATABASE=sqlite ./vendor/bin/phpunit tests/",
2018-12-29 23:03:32 +01:00
"test-fixup": "mkdir -p templates_c ; test -f config.local.php || touch config.local.php",
2019-01-08 14:22:35 +01:00
"psalm": "@php ./vendor/bin/psalm --no-cache --show-info=false "
},
"require": {
2019-10-19 21:32:00 +02:00
"php": ">=5.6"
},
"require-dev": {
"ext-mysqli": "*",
2019-02-18 21:31:31 +01:00
"ext-sqlite3": "*",
"friendsofphp/php-cs-fixer": "*",
"jakub-onderka/php-parallel-lint": "^1.0",
2019-02-18 21:31:31 +01:00
"php": ">7.2.0",
"php-coveralls/php-coveralls" : "*",
2020-01-31 17:30:46 +01:00
"phpunit/phpunit": "^6|^7",
2019-10-19 21:32:00 +02:00
"vimeo/psalm":"^3.0",
"zendframework/zendframework1": "^1.12.0"
},
"autoload": {
"files": [
"config.inc.php",
2019-10-20 21:38:45 +02:00
"functions.inc.php",
"lib/smarty/libs/bootstrap.php"
]
}
}