├── .editorconfig ├── CHANGELOG.md ├── CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── composer.json ├── phpunit.xml └── src ├── Contracts └── ReactableInterface.php ├── Migrations ├── 2017_03_25_141250_create_reactions_table.php └── 2017_03_25_142853_create_reactables_table.php ├── Models └── Reaction.php ├── Providers └── ReactionsServiceProvider.php └── Traits ├── Reactable.php └── Reacts.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Contracts/ReactableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/src/Contracts/ReactableInterface.php -------------------------------------------------------------------------------- /src/Migrations/2017_03_25_141250_create_reactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/src/Migrations/2017_03_25_141250_create_reactions_table.php -------------------------------------------------------------------------------- /src/Migrations/2017_03_25_142853_create_reactables_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/src/Migrations/2017_03_25_142853_create_reactables_table.php -------------------------------------------------------------------------------- /src/Models/Reaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/src/Models/Reaction.php -------------------------------------------------------------------------------- /src/Providers/ReactionsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/src/Providers/ReactionsServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/Reactable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/src/Traits/Reactable.php -------------------------------------------------------------------------------- /src/Traits/Reacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thedevdojo/laravel-reactions/HEAD/src/Traits/Reacts.php --------------------------------------------------------------------------------