├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── feed.php ├── migrations └── 2015_12_23_100000_create_notifications_table.php ├── phpunit.xml ├── src ├── Contracts │ ├── Notifiable.php │ ├── NotifiableGroup.php │ ├── Notification.php │ ├── PullFeed.php │ ├── PushFeed.php │ └── Store.php ├── Events │ ├── NotificationAdded.php │ ├── NotificationRead.php │ └── NotificationUnread.php ├── Exceptions │ └── NotNotifiableException.php ├── Facades │ └── Feed.php ├── Feed.php ├── FeedServiceProvider.php ├── Store │ ├── Eloquent │ │ ├── Notifiable.php │ │ └── Notification.php │ └── Manager.php └── helpers.php └── tests ├── .gitkeep ├── DbTestCase.php ├── FeedTest.php ├── Team.php └── User.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /.idea 3 | composer.lock -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljennings/feed/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljennings/feed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljennings/feed/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljennings/feed/HEAD/composer.json -------------------------------------------------------------------------------- /config/feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljennings/feed/HEAD/config/feed.php -------------------------------------------------------------------------------- /migrations/2015_12_23_100000_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljennings/feed/HEAD/migrations/2015_12_23_100000_create_notifications_table.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeljennings/feed/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Contracts/Notifiable.php: -------------------------------------------------------------------------------- 1 |