0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00
postfixadmin/composer.json
2018-12-29 21:59:25 +00:00

42 lines
1.2 KiB
JSON

{
"name": "postfixadmin/postfixadmin",
"description": "web based administration interface for Postfix mail servers",
"type": "project",
"license": "GPL-2.0",
"scripts": {
"build" : [
"@check-format",
"@lint",
"@templates_c",
"@psalm",
"@test"
],
"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 .",
"test": "@php ./vendor/bin/phpunit tests/",
"templates_c": "mkdir -p templates_c",
"psalm": "@php ./vendor/bin/psalm --show-info=false "
},
"require": {
"php": ">=5.2"
},
"require-dev": {
"ext-sqlite3": "*",
"ext-mysqli": "*",
"php": ">7.2.0",
"friendsofphp/php-cs-fixer": "^2.7",
"vimeo/psalm":"^3.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpunit/phpunit": "^6.0",
"zendframework/zendframework1": "^1.12.0"
},
"autoload": {
"files": [
"config.inc.php",
"functions.inc.php",
"lib/smarty/libs/bootstrap.php"
]
}
}