composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "adldap2/adldap2",
  3. "type": "library",
  4. "description": "A PHP LDAP Package for humans.",
  5. "keywords": [
  6. "active directory",
  7. "directory",
  8. "ad",
  9. "ldap",
  10. "windows",
  11. "adldap",
  12. "adldap2"
  13. ],
  14. "license": "MIT",
  15. "support": {
  16. "docs": "https://github.com/Adldap2/Adldap2/blob/master/readme.md",
  17. "issues": "https://github.com/Adldap2/Adldap2/issues",
  18. "source": "https://github.com/Adldap2/Adldap2",
  19. "email": "steven_bauman@outlook.com"
  20. },
  21. "authors": [
  22. {
  23. "name": "Steve Bauman",
  24. "email": "steven_bauman@outlook.com",
  25. "role": "Developer"
  26. }
  27. ],
  28. "require": {
  29. "php": ">=7.0",
  30. "ext-ldap": "*",
  31. "ext-json": "*",
  32. "psr/log": "~1.0",
  33. "psr/simple-cache": "~1.0",
  34. "tightenco/collect": "~5.0|~6.0|~7.0|~8.0",
  35. "illuminate/contracts": "~5.0|~6.0|~7.0|~8.0"
  36. },
  37. "require-dev": {
  38. "phpunit/phpunit": "~6.0|~7.0|~8.0",
  39. "mockery/mockery": "~1.0"
  40. },
  41. "suggest": {
  42. "ext-fileinfo": "fileinfo is required when retrieving user encoded thumbnails"
  43. },
  44. "archive": {
  45. "exclude": ["/examples", "/tests"]
  46. },
  47. "autoload": {
  48. "psr-4": {
  49. "Adldap\\": "src/"
  50. }
  51. },
  52. "autoload-dev": {
  53. "psr-4": {
  54. "Adldap\\Tests\\": "tests/"
  55. }
  56. }
  57. }