├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Fenos │ └── Rally │ │ ├── Exceptions │ │ ├── AlreadyFollowerException.php │ │ └── FollowerNotFoundException.php │ │ ├── Facades │ │ └── Rally.php │ │ ├── Models │ │ ├── Follower.php │ │ └── Relations.php │ │ ├── Rally.php │ │ ├── RallyServiceProvider.php │ │ └── Repositories │ │ ├── RallyPolymorphicRepository.php │ │ ├── RallyRepository.php │ │ └── RallyRepositoryInterface.php ├── config │ └── config.php └── migrations │ └── 2014_05_14_093849_create_followers_table.php └── tests ├── RallyPolymorphicRepositoryTest.php ├── RallyRepositoryTest.php └── RallyTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Fenos/Rally/Exceptions/AlreadyFollowerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Exceptions/AlreadyFollowerException.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Exceptions/FollowerNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Exceptions/FollowerNotFoundException.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Facades/Rally.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Facades/Rally.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Models/Follower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Models/Follower.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Models/Relations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Models/Relations.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Rally.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Rally.php -------------------------------------------------------------------------------- /src/Fenos/Rally/RallyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/RallyServiceProvider.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Repositories/RallyPolymorphicRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Repositories/RallyPolymorphicRepository.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Repositories/RallyRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Repositories/RallyRepository.php -------------------------------------------------------------------------------- /src/Fenos/Rally/Repositories/RallyRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/Fenos/Rally/Repositories/RallyRepositoryInterface.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/config/config.php -------------------------------------------------------------------------------- /src/migrations/2014_05_14_093849_create_followers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/src/migrations/2014_05_14_093849_create_followers_table.php -------------------------------------------------------------------------------- /tests/RallyPolymorphicRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/tests/RallyPolymorphicRepositoryTest.php -------------------------------------------------------------------------------- /tests/RallyRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/tests/RallyRepositoryTest.php -------------------------------------------------------------------------------- /tests/RallyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenos/Rally/HEAD/tests/RallyTest.php --------------------------------------------------------------------------------