0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/composer.json
Adrien Crivelli 6f7e75dc63 Introduce PHP-CS-Fixer and Travis to enforce code style
Commands `composer check` and `composer fix` can be used to respectively
check and automatically fix code style in the entire project.
2018-01-25 19:55:51 +00:00

17 lines
420 B
JSON

{
"name": "postfixadmin/postfixadmin",
"description": "web based administration interface for Postfix mail servers",
"type": "project",
"license": "GPL-2.0",
"scripts": {
"check": "php-cs-fixer fix --ansi --dry-run --diff",
"fix": "php-cs-fixer fix --ansi"
},
"require": {
"php": ">=5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.7"
}
}