gitextract_thniymky/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── config.yml │ ├── SECURITY.md │ └── workflows/ │ ├── php-cs-fixer.yml │ ├── psalm.yml │ └── run-tests.yml ├── .gitignore ├── .php_cs.dist ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── database/ │ └── migrations/ │ ├── add_type_column_to_ratings_table.php.stub │ └── create_ratings_table.php.stub ├── phpunit.xml.dist ├── psalm.xml.dist ├── src/ │ ├── LaravelRating.php │ ├── LaravelRatingFacade.php │ ├── LaravelRatingServiceProvider.php │ ├── Models/ │ │ └── Rating.php │ └── Traits/ │ ├── Like/ │ │ ├── CanLike.php │ │ └── Likeable.php │ ├── Rate/ │ │ ├── CanRate.php │ │ └── Rateable.php │ └── Vote/ │ ├── CanVote.php │ └── Votable.php └── tests/ ├── LikeTest.php ├── Models/ │ ├── Post.php │ └── User.php ├── RatingTest.php ├── TestCase.php ├── VotingTest.php └── database/ └── migrations/ ├── create_posts_table.php └── create_users_table.php