fenos/Notifynder

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "fenos/notifynder",
  "description": "Management system of internal notifications for Laravel 5.*",
  "keywords": ["notifications", "laravel"],
  "license": "MIT",
  "authors": [
    {
      "name": "Fabrizio Fenoglio",
      "email": "fabri_feno@yahoo.it",
      "role": "Developer"
    },
    {
      "name": "Tom Witkowski",
      "email": "dev.gummibeer@gmail.com",
      "role": "Developer"
    }
  ],
  "require": {
    "php": ">=5.5.0",
    "illuminate/support": "~5.0",
    "doctrine/dbal": "^2.5"
  },
  "require-dev": {
    "laravel/framework": "~5.0",
    "phpunit/phpunit": "~4.0|~5.0",
    "laracasts/testdummy": "~2.0",
    "orchestra/testbench": "~3.0",
    "orchestra/database": "~3.0|3.4.x-dev",
    "codeclimate/php-test-reporter": "^0.3.2",
    "satooshi/php-coveralls": "^1.0"
  },
  "suggest": {
    "astrotomic/notifynder-sender-email": "Allows to send notifications as email.",
    "astrotomic/notifynder-sender-redis": "Allows to send notifications via Redis (Pub/Sub).",
    "astrotomic/notifynder-sender-slack": "Allows to send notifications via Slack.",
    "astrotomic/notifynder-sender-messagebird": "Allows to send notifications via MessageBird.",
    "astrotomic/notifynder-sender-nexmo": "Allows to send notifications via Nexmo.",
    "astrotomic/notifynder-sender-twilio": "Allows to send notifications via Twilio."
  },
  "autoload": {
    "psr-4": {
      "Fenos\\Notifynder\\": "src/Notifynder"
    },
    "files": [
      "src/Notifynder/Helpers/helpers.php"
    ]
  },
  "autoload-dev": {
    "classmap": [
      "tests/NotifynderTestCase.php"
    ],
    "psr-4": {
      "Fenos\\Tests\\": "tests/models"
    }
  },
  "prefer-stable": true
}