composer.json
{
"name": "nikolajlovenhardt/laravel-user-notifications",
"type": "library",
"description": "User notifications for Laravel 5.*",
"keywords": [
"laravel",
"notifications",
"user"
],
"homepage": "https://github.com/nikolajlovenhardt/laravel-user-notifications",
"license": "MIT",
"authors": [
{
"name": "Nikolaj Petersen",
"email": "nikolaj.lovenhardt@gmail.com",
"homepage": "http://github.com/nikolajlovenhardt"
}
],
"require": {
"php": ">=5.5.0",
"laravel/framework": "5.*",
"ramsey/uuid": "2.8.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"codeclimate/php-test-reporter": "dev-master",
"phpmd/phpmd" : "1.4.*",
"doctrine/orm": "2.5.4",
"squizlabs/php_codesniffer" : "~2.5.1"
},
"autoload": {
"psr-4": {
"LaravelUserNotifications\\": "src/LaravelUserNotifications"
}
},
"autoload-dev": {
"psr-4": {
"LaravelUserNotificationsTests\\": "tests/"
}
},
"suggest": {
"laravel-doctrine/orm": "Doctrine ORM for Laravel"
}
}