composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "facebook/graph-sdk",
  3. "description": "Facebook SDK for PHP",
  4. "keywords": ["facebook", "sdk"],
  5. "type": "library",
  6. "homepage": "https://github.com/facebook/php-graph-sdk",
  7. "license": "Facebook Platform",
  8. "authors": [
  9. {
  10. "name": "Facebook",
  11. "homepage": "https://github.com/facebook/php-graph-sdk/contributors"
  12. }
  13. ],
  14. "require": {
  15. "php": "^5.4|^7.0"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "~4.0",
  19. "mockery/mockery": "~0.8",
  20. "guzzlehttp/guzzle": "~5.0"
  21. },
  22. "suggest": {
  23. "paragonie/random_compat": "Provides a better CSPRNG option in PHP 5",
  24. "guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Facebook\\": "src/Facebook/"
  29. },
  30. "files": ["src/Facebook/polyfills.php"]
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Facebook\\Tests\\": "tests/"
  35. }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "5.x-dev"
  40. }
  41. }
  42. }