菜谱项目

composer.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "league/fractal",
  3. "description": "Handle the output of complex data structures ready for API output.",
  4. "keywords": [
  5. "league",
  6. "api",
  7. "json",
  8. "rest"
  9. ],
  10. "homepage": "http://fractal.thephpleague.com/",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Phil Sturgeon",
  15. "email": "me@philsturgeon.uk",
  16. "homepage": "http://philsturgeon.uk/",
  17. "role": "Developer"
  18. }
  19. ],
  20. "config": {
  21. "sort-packages": true
  22. },
  23. "require": {
  24. "php": ">=5.4"
  25. },
  26. "require-dev": {
  27. "doctrine/orm": "^2.5",
  28. "illuminate/contracts": "~5.0",
  29. "mockery/mockery": "~0.9",
  30. "pagerfanta/pagerfanta": "~1.0.0",
  31. "phpunit/phpunit": "~4.0",
  32. "squizlabs/php_codesniffer": "~1.5",
  33. "zendframework/zend-paginator": "~2.3"
  34. },
  35. "suggest": {
  36. "illuminate/pagination": "The Illuminate Pagination component.",
  37. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  38. "zendframework/zend-paginator": "Zend Framework Paginator"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "League\\Fractal\\": "src"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "League\\Fractal\\Test\\": "test"
  48. }
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "0.13-dev"
  53. }
  54. }
  55. }