├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── eloquent-wherelike.php ├── phpunit.xml.dist ├── src └── EloquentWherelikeServiceProvider.php └── tests ├── App ├── Profile.php ├── User.php └── database │ └── migrations │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_000001_create_profiles_table.php ├── Traits └── LaravelTestBootstrapping.php └── WhereLikeTest.php /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /vendor 3 | /build 4 | composer.lock 5 | .phpunit.result.cache -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/composer.json -------------------------------------------------------------------------------- /config/eloquent-wherelike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/config/eloquent-wherelike.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/EloquentWherelikeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/src/EloquentWherelikeServiceProvider.php -------------------------------------------------------------------------------- /tests/App/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/tests/App/Profile.php -------------------------------------------------------------------------------- /tests/App/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/tests/App/User.php -------------------------------------------------------------------------------- /tests/App/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/tests/App/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /tests/App/database/migrations/2014_10_12_000001_create_profiles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/tests/App/database/migrations/2014_10_12_000001_create_profiles_table.php -------------------------------------------------------------------------------- /tests/Traits/LaravelTestBootstrapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/tests/Traits/LaravelTestBootstrapping.php -------------------------------------------------------------------------------- /tests/WhereLikeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/eloquent-wherelike/HEAD/tests/WhereLikeTest.php --------------------------------------------------------------------------------