Skip to content

Commit

Permalink
first commit 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
3x1io committed Sep 6, 2022
1 parent ba7f262 commit ad58b7a
Show file tree
Hide file tree
Showing 6 changed files with 103 additions and 41 deletions.
9 changes: 9 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
The MIT License (MIT)

Copyright 2022 info@3x1.io

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
59 changes: 59 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# VILT Notifications Module

Notifications Module with multi channels and vendors like FCM / Pusher

## Install

```bash
composer require queents/notifications-module
```
Add Module to `modules_statuses.json` if not exists

```json
{
"Notifications": true
}
```

```bash
php artisan notifications:install
```

Make a migration

```bash
php artisan migrate
```

Publish Assets

```bash
npm i & npm run build
```

OR

```bash
yarn & yarn build
```

## Support

you can join our discord server to get support [VILT Admin](https://discord.gg/HUNYbgKDdx)

## Docs

look to the new docs of v4.00 on my website [Docs](https://vilt.3x1.io/docs/)

## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Credits

- [Queen Tech Solutions](https://github.com/queents)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

29 changes: 25 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
{
"name": "nwidart/notifications",
"description": "",
"name": "queents/notifications-module",
"description": "VILT Notifications Module with multi channels and vendors like FCM / Pusher",
"keywords": [
"laravel",
"notifications",
"laravel fcm",
"laravel pusher",
"ui",
"vilt-admin",
"Vilt stack"
],
"type": "laravel-module",
"homepage": "https://www.queentechsolutions.net",
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "n.widart@gmail.com"
"name": "Fady Mondy",
"email": "info@3x1.io",
"role": "Senior Fullstack developer"
}
],
"require": {
"queents/vilt": "^1.0",
"kreait/firebase-php": "6.3.1",
"kreait/firebase-tokens": "3.0",
"laravel-notification-channels/discord": "^1.3",
"laravel-notification-channels/fcm": "^2.4",
"laravel/slack-notification-channel": "^2.4"
},
"extra": {
"laravel": {
"providers": [],
Expand Down
12 changes: 10 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
{
"name": "Notifications",
"alias": "notifications",
"description": "",
"keywords": [],
"description": "VILT Notifications Module with multi channels and vendors like FCM / Pusher",
"keywords": [
"laravel",
"notifications",
"laravel fcm",
"laravel pusher",
"ui",
"vilt-admin",
"Vilt stack"
],
"priority": 1,
"providers": [
"Modules\\Notifications\\Providers\\NotificationsServiceProvider"
Expand Down
21 changes: 0 additions & 21 deletions package.json

This file was deleted.

14 changes: 0 additions & 14 deletions webpack.mix.js

This file was deleted.

0 comments on commit ad58b7a

Please sign in to comment.