composer.json 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name" : "apereo/phpcas",
  3. "description" : "Provides a simple API for authenticating users against a CAS server",
  4. "keywords" : [
  5. "cas",
  6. "jasig",
  7. "apereo"
  8. ],
  9. "homepage" : "https://wiki.jasig.org/display/CASC/phpCAS",
  10. "type" : "library",
  11. "license" : "Apache-2.0",
  12. "authors" : [{
  13. "name" : "Joachim Fritschi",
  14. "homepage" : "https://github.com/jfritschi",
  15. "email" : "jfritschi@freenet.de"
  16. }, {
  17. "name" : "Adam Franco",
  18. "homepage" : "https://github.com/adamfranco"
  19. }, {
  20. "name" : "Henry Pan",
  21. "homepage" : "https://github.com/phy25"
  22. }
  23. ],
  24. "require" : {
  25. "php" : ">=7.0.0",
  26. "ext-curl" : "*",
  27. "psr/log" : "^1.0.0"
  28. },
  29. "require-dev" : {
  30. "monolog/monolog" : "^1.0.0",
  31. "phpunit/phpunit" : ">=4.8.35 <8"
  32. },
  33. "autoload" : {
  34. "classmap" : [
  35. "source/"
  36. ]
  37. },
  38. "autoload-dev" : {
  39. "psr-4" : {
  40. "PhpCas\\" : "test/CAS/"
  41. }
  42. },
  43. "scripts" : {
  44. "test" : "phpunit"
  45. },
  46. "extra" : {
  47. "branch-alias" : {
  48. "dev-master" : "1.3.x-dev"
  49. }
  50. }
  51. }