composer.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "cyrildewit/eloquent-viewable",
  3. "description": "Laravel package that allows you to associate views with Eloquent models",
  4. "type": "library",
  5. "license": "MIT",
  6. "homepage": "https://github.com/cyrildewit/eloquent-viewable",
  7. "keywords": [
  8. "laravel",
  9. "eloquent",
  10. "views",
  11. "viewable",
  12. "visits",
  13. "visitable",
  14. "hits",
  15. "counter"
  16. ],
  17. "authors": [
  18. {
  19. "name": "Cyril de Wit",
  20. "email": "info@cyrildewit.nl",
  21. "homepage": "http://cyrildewit.nl",
  22. "role": "Developer"
  23. }
  24. ],
  25. "require": {
  26. "php": "^7.4|^8.0",
  27. "illuminate/cache": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
  28. "illuminate/contracts": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
  29. "illuminate/cookie": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
  30. "illuminate/database": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
  31. "illuminate/http": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
  32. "illuminate/support": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
  33. "jaybizzle/crawler-detect": "^1.0",
  34. "nesbot/carbon": "^2.0|^3.0"
  35. },
  36. "require-dev": {
  37. "illuminate/config": "^6.0|^7.0|^8.74|^9.0|^10.0|^11.0|^12.0",
  38. "mockery/mockery": "^1.2.4",
  39. "orchestra/testbench": "^4.9.1|^5.9.1|^6.6.1|^7.0.0|^8.0.0",
  40. "laravel/legacy-factories": "^1.1|^1.3",
  41. "phpunit/phpunit": "^9.6.0|^10.0||^11.0"
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "CyrildeWit\\EloquentViewable\\": "src/"
  46. },
  47. "files": [
  48. "src/helpers.php"
  49. ]
  50. },
  51. "autoload-dev": {
  52. "psr-4": {
  53. "CyrildeWit\\EloquentViewable\\Tests\\": "tests/"
  54. }
  55. },
  56. "scripts": {
  57. "test": "vendor/bin/phpunit",
  58. "test:cov": "vendor/bin/phpunit --coverage-clover build/coverage.xml"
  59. },
  60. "config": {
  61. "sort-packages": true
  62. },
  63. "minimum-stability": "dev",
  64. "prefer-stable": true,
  65. "extra": {
  66. "laravel": {
  67. "providers": [
  68. "CyrildeWit\\EloquentViewable\\EloquentViewableServiceProvider"
  69. ]
  70. }
  71. }
  72. }