Skip to content

Commit

Permalink
Merge pull request #3 from rosda/RIMU-917-service-bus-integration
Browse files Browse the repository at this point in the history
RIMU-917 Service Bus Integration
  • Loading branch information
dylanharbour authored Jul 19, 2019
2 parents 443c485 + 88052c6 commit 0af32f1
Show file tree
Hide file tree
Showing 16 changed files with 5,261 additions and 116 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/vendor
build
composer.phar
composer.lock
.idea/
.phpunit.result.cache
3 changes: 0 additions & 3 deletions .styleci.yml

This file was deleted.

52 changes: 39 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,65 @@
{
"name": "ringierimu/service-bus-notifications-channel",
"description": ":package_description",
"description": "Service Bus Notifications Channel",
"homepage": "https://github.com/laravel-notification-channels/:package_name",
"license": "MIT",
"authors": [
{
"name": ":author_name",
"email": ":author_email",
"homepage": ":author_website",
"name": "RIMU Core",
"email": "tools@roam.africa",
"homepage": "http://ringier.tech",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"php": "^7.1.3",
"illuminate/notifications": "^5.3",
"illuminate/support": "^5.1|^5.2|^5.3"
"illuminate/support": "^5.1|^5.2|^5.3",
"guzzlehttp/guzzle": "^5.3.3|^6.2.1",
"guzzlehttp/psr7": "^1.4.1",
"guzzlehttp/promises": "~1.0",
"ramsey/uuid": "^3.7",
"ext-pcre": "*",
"ext-json": "*",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5.4.3",
"mockery/mockery": "^0.9.5",
"phpunit/phpunit": "4.*"
"ext-openssl": "*",
"ext-dom": "*",
"ext-pcntl": "*",
"ext-sockets": "*",
"behat/behat": "~3.0",
"doctrine/cache": "~1.4",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\:channel_namespace\\": "src"
"Ringierimu\\ServiceBusNotificationsChannel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\:channel_namespace\\Test\\": "tests"
}
"Ringierimu\\ServiceBusNotificationsChannel\\Tests\\": "tests"
},
"files": [
"tests/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Ringierimu\\ServiceBusNotificationsChannel\\ServiceBusServiceProvider"
]
},
"include_files": [
"tests/Fixtures/Helpers.php"
]
},

"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}
Loading

0 comments on commit 0af32f1

Please sign in to comment.