composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name":"restler/framework",
  3. "description":"Just the Restler Framework without the tests and examples",
  4. "type":"library",
  5. "keywords":["server","api","framework","REST"],
  6. "homepage":"http://luracast.com/products/restler/",
  7. "license":"LGPL-2.1",
  8. "authors":[
  9. {
  10. "name":"Luracast",
  11. "email":"arul@luracast.com"
  12. }
  13. ],
  14. "extra":{
  15. "branch-alias":{
  16. "master":"v3.0.x-dev"
  17. }
  18. },
  19. "suggest":{
  20. "rodneyrehm/plist":"If you need Apple plist binary/xml format",
  21. "zendframework/zendamf":"If you need AMF format",
  22. "symfony/yaml":"If you need YAML format",
  23. "twig/twig":"If you want to use twig templates with Html format",
  24. "mustache/mustache":"If you want to use mustache/handlebar templates with Html format",
  25. "illuminate/view":"If you want to use laravel blade templates with Html format",
  26. "bshaffer/oauth2-server-php":"If you want to use OAuth2 for authentication"
  27. },
  28. "require":{
  29. "php":">=5.3.0"
  30. },
  31. "require-dev":{
  32. },
  33. "repositories":[
  34. {
  35. "type":"vcs",
  36. "url":"https://github.com/zendframework/ZendAmf.git"
  37. }
  38. ],
  39. "autoload":{
  40. "psr-0":{
  41. "Luracast\\Restler":""
  42. }
  43. },
  44. "target-dir": "Luracast/Restler",
  45. "replace": {
  46. "luracast/restler":"3.*"
  47. }
  48. }