composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "prettus/l5-repository",
  3. "description": "Laravel 5|6|7|8|9 - Repositories to the database layer",
  4. "keywords": [
  5. "laravel",
  6. "repository",
  7. "eloquent",
  8. "model",
  9. "cache"
  10. ],
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Anderson Andrade",
  15. "homepage": "http://andersonandra.de",
  16. "email": "contato@andersonandra.de",
  17. "role": "Developer"
  18. }
  19. ],
  20. "homepage": "http://andersao.github.io/l5-repository",
  21. "support": {
  22. "email": "contato@andersonandra.de",
  23. "issues":"https://github.com/andersao/l5-repository/issues",
  24. "wiki":"https://github.com/andersao/l5-repository",
  25. "source":"https://github.com/andersao/l5-repository",
  26. "docs": "http://andersao.github.io/l5-repository"
  27. },
  28. "require": {
  29. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0",
  30. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0",
  31. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0",
  32. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0",
  33. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0",
  34. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0",
  35. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0",
  36. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4",
  37. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0"
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Prettus\\Repository\\": "src/Prettus/Repository/"
  42. }
  43. },
  44. "config": {
  45. "preferred-install": "dist"
  46. },
  47. "suggest": {
  48. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  49. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)",
  50. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)"
  51. },
  52. "extra": {
  53. "laravel": {
  54. "providers": [
  55. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  56. ]
  57. }
  58. },
  59. "minimum-stability": "stable"
  60. }