├── .gitignore ├── .travis.yml ├── README.md ├── bootstrap.php ├── composer.json ├── phpunit.xml ├── src └── Mpociot │ └── Reanimate │ └── ReanimateModels.php └── tests ├── config └── database.php ├── controllers ├── NoMatchingModelController.php └── UserController.php ├── migrators └── UserMigrator.php ├── models └── User.php ├── seeders └── UserSeeder.php └── suite └── ReanimationTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | composer.lock 4 | /vendor -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Mpociot/Reanimate/ReanimateModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/src/Mpociot/Reanimate/ReanimateModels.php -------------------------------------------------------------------------------- /tests/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/tests/config/database.php -------------------------------------------------------------------------------- /tests/controllers/NoMatchingModelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/tests/controllers/NoMatchingModelController.php -------------------------------------------------------------------------------- /tests/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/tests/controllers/UserController.php -------------------------------------------------------------------------------- /tests/migrators/UserMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/tests/migrators/UserMigrator.php -------------------------------------------------------------------------------- /tests/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/tests/models/User.php -------------------------------------------------------------------------------- /tests/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/tests/seeders/UserSeeder.php -------------------------------------------------------------------------------- /tests/suite/ReanimationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reanimate/HEAD/tests/suite/ReanimationTest.php --------------------------------------------------------------------------------