composer.json 739 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "apache/thrift",
  3. "description": "Apache Thrift RPC system",
  4. "homepage": "http://thrift.apache.org/",
  5. "type": "library",
  6. "license": "Apache-2.0",
  7. "authors": [
  8. {
  9. "name": "Apache Thrift Developers",
  10. "email": "dev@thrift.apache.org",
  11. "homepage": "http://thrift.apache.org"
  12. }
  13. ],
  14. "support": {
  15. "email": "dev@thrift.apache.org",
  16. "issues": "https://issues.apache.org/jira/browse/THRIFT"
  17. },
  18. "require": {
  19. "php": ">=5.3.0"
  20. },
  21. "autoload": {
  22. "psr-0": {"Thrift": "lib/php/lib/"}
  23. },
  24. "minimum-stability": "dev",
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "0.10.0"
  28. }
  29. }
  30. }