├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── FriendshipsServiceProvider.php ├── Models │ ├── FriendFriendshipGroups.php │ └── Friendship.php ├── Status.php ├── Traits │ └── Friendable.php ├── config │ └── friendships.php └── database │ └── migrations │ ├── create_friendships_groups_table.php │ └── create_friendships_table.php └── tests ├── CreatesApplication.php ├── FriendshipsEventsTest.php ├── FriendshipsGroupsTest.php ├── FriendshipsTest.php ├── Stub_User.php ├── TestCase.php ├── config ├── app.php ├── database.php └── friendships.php └── helpers.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | /.idea 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/FriendshipsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/FriendshipsServiceProvider.php -------------------------------------------------------------------------------- /src/Models/FriendFriendshipGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/Models/FriendFriendshipGroups.php -------------------------------------------------------------------------------- /src/Models/Friendship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/Models/Friendship.php -------------------------------------------------------------------------------- /src/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/Status.php -------------------------------------------------------------------------------- /src/Traits/Friendable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/Traits/Friendable.php -------------------------------------------------------------------------------- /src/config/friendships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/config/friendships.php -------------------------------------------------------------------------------- /src/database/migrations/create_friendships_groups_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/database/migrations/create_friendships_groups_table.php -------------------------------------------------------------------------------- /src/database/migrations/create_friendships_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/src/database/migrations/create_friendships_table.php -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/FriendshipsEventsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/FriendshipsEventsTest.php -------------------------------------------------------------------------------- /tests/FriendshipsGroupsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/FriendshipsGroupsTest.php -------------------------------------------------------------------------------- /tests/FriendshipsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/FriendshipsTest.php -------------------------------------------------------------------------------- /tests/Stub_User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/Stub_User.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/config/app.php -------------------------------------------------------------------------------- /tests/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/config/database.php -------------------------------------------------------------------------------- /tests/config/friendships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/config/friendships.php -------------------------------------------------------------------------------- /tests/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootlex/laravel-friendships/HEAD/tests/helpers.php --------------------------------------------------------------------------------