composer.json 641 B

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