composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "lusitanian/oauth",
  3. "description": "PHP 5.3+ oAuth 1/2 Library",
  4. "keywords": ["oauth", "authentication", "authorization", "security"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "David Desberg",
  9. "email": "david@daviddesberg.com"
  10. },
  11. {
  12. "name": "Pieter Hordijk",
  13. "email": "info@pieterhordijk.com"
  14. },
  15. {
  16. "name": "Elliot Chance",
  17. "email": "elliotchance@gmail.com"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.3.0"
  22. },
  23. "require-dev": {
  24. "symfony/http-foundation": "~2.1",
  25. "predis/predis": "0.8.*@dev",
  26. "phpunit/phpunit": "3.7.*",
  27. "squizlabs/php_codesniffer": "2.*"
  28. },
  29. "suggest": {
  30. "symfony/http-foundation": "Allows using the Symfony Session storage backend.",
  31. "predis/predis": "Allows using the Redis storage backend.",
  32. "ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client."
  33. },
  34. "autoload": {
  35. "psr-0": {
  36. "OAuth": "src",
  37. "OAuth\\Unit": "tests"
  38. }
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "0.1-dev"
  43. }
  44. }
  45. }