composer.json 762 B

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