├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── database └── migrations │ ├── create_rate_types_table.php.stub │ ├── create_ratings_table.php.stub │ └── create_reviews_table.php.stub ├── database_structure.png ├── db.rd.xml ├── phpunit.xml ├── src ├── Contracts │ └── R8.php ├── Models │ ├── RateType.php │ ├── Rating.php │ └── Review.php ├── R8ServiceProvider.php └── Traits │ └── R8Trait.php └── tests └── TestCase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ 3 | composer.lock 4 | .php_cs.cache 5 | build/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/composer.json -------------------------------------------------------------------------------- /database/migrations/create_rate_types_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/database/migrations/create_rate_types_table.php.stub -------------------------------------------------------------------------------- /database/migrations/create_ratings_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/database/migrations/create_ratings_table.php.stub -------------------------------------------------------------------------------- /database/migrations/create_reviews_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/database/migrations/create_reviews_table.php.stub -------------------------------------------------------------------------------- /database_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/database_structure.png -------------------------------------------------------------------------------- /db.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/db.rd.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Contracts/R8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/src/Contracts/R8.php -------------------------------------------------------------------------------- /src/Models/RateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/src/Models/RateType.php -------------------------------------------------------------------------------- /src/Models/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/src/Models/Rating.php -------------------------------------------------------------------------------- /src/Models/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/src/Models/Review.php -------------------------------------------------------------------------------- /src/R8ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/src/R8ServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/R8Trait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/src/Traits/R8Trait.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secrethash/r8/HEAD/tests/TestCase.php --------------------------------------------------------------------------------