├── .gitignore ├── .travis.yml ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── src └── ReplaceableModel.php ├── test-migrations └── 2017_10_20_000000_create_test_table.php └── tests └── ReplacableModelTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/ReplaceableModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/src/ReplaceableModel.php -------------------------------------------------------------------------------- /test-migrations/2017_10_20_000000_create_test_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/test-migrations/2017_10_20_000000_create_test_table.php -------------------------------------------------------------------------------- /tests/ReplacableModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdavidbakr/replaceable-model/HEAD/tests/ReplacableModelTest.php --------------------------------------------------------------------------------