composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "laravel/slack-notification-channel",
  3. "description": "Slack Notification Channel for laravel.",
  4. "keywords": ["laravel", "notifications", "slack"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Taylor Otwell",
  9. "email": "taylor@laravel.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^7.1.3",
  14. "guzzlehttp/guzzle": "^6.0"
  15. },
  16. "require-dev": {
  17. "illuminate/notifications": "~5.7",
  18. "mockery/mockery": "^1.0",
  19. "phpunit/phpunit": "^7.0"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Illuminate\\Notifications\\": "src/"
  24. }
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "Illuminate\\Tests\\Notifications\\": "tests/"
  29. }
  30. },
  31. "config": {
  32. "sort-packages": true
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.0-dev"
  37. },
  38. "laravel": {
  39. "providers": [
  40. "Illuminate\\Notifications\\SlackChannelServiceProvider"
  41. ]
  42. }
  43. },
  44. "minimum-stability": "dev",
  45. "prefer-stable": true
  46. }