composer.json 770 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "edgardmessias/glpi-singlesignon",
  3. "description": "Single Sign-On (OAuth) for GLPI",
  4. "license": "GPL-3.0-or-later",
  5. "require-dev": {
  6. "consolidation/robo": "^1.4",
  7. "glpi-project/coding-standard": "^0.8",
  8. "pear/archive_tar": "^1.4",
  9. "phpcompatibility/php-compatibility": "^9.3",
  10. "squizlabs/php_codesniffer": "^3.5"
  11. },
  12. "scripts": {
  13. "lint": "phpcs",
  14. "lint:fix": "phpcbf",
  15. "make-release": "robo build",
  16. "update-locales": "robo update_locales"
  17. },
  18. "config": {
  19. "allow-plugins": {
  20. "dealerdirect/phpcodesniffer-composer-installer": true
  21. },
  22. "platform": {
  23. "php": "7.1.2"
  24. },
  25. "sort-packages": true
  26. }
  27. }