You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 723B

1234567891011121314151617181920212223
  1. {
  2. "name": "postfixadmin/postfixadmin",
  3. "description": "web based administration interface for Postfix mail servers",
  4. "type": "project",
  5. "license": "GPL-2.0",
  6. "scripts": {
  7. "check-format": "php-cs-fixer fix --ansi --dry-run --diff",
  8. "format": "php-cs-fixer fix --ansi",
  9. "lint": "@php ./vendor/bin/parallel-lint --exclude vendor/ .",
  10. "test": "@php ./vendor/bin/phpunit tests/"
  11. },
  12. "require": {
  13. "php": ">=5.2"
  14. },
  15. "require-dev": {
  16. "friendsofphp/php-cs-fixer": "^2.7",
  17. "vimeo/psalm":"^1.0",
  18. "jakub-onderka/php-parallel-lint": "^0.9.2",
  19. "phpunit/phpunit": "^5.7",
  20. "zendframework/zendframework1": "^1.12.0"
  21. }
  22. }