mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-15 18:53:27 +00:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "laravel/slack-notification-channel",
|
|
"description": "Slack Notification Channel for laravel.",
|
|
"keywords": ["laravel", "notifications", "slack"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Taylor Otwell",
|
|
"email": "taylor@laravel.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1.3",
|
|
"guzzlehttp/guzzle": "^6.0"
|
|
},
|
|
"require-dev": {
|
|
"illuminate/notifications": "~5.7",
|
|
"mockery/mockery": "^1.0",
|
|
"phpunit/phpunit": "^7.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Illuminate\\Notifications\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Illuminate\\Tests\\Notifications\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.0-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Illuminate\\Notifications\\SlackChannelServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|