├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── config └── mention.php ├── src ├── Facades │ └── Mention.php ├── Mention.php └── MentionServiceProvider.php └── tests ├── MentionTest.php └── TestCase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/composer.json -------------------------------------------------------------------------------- /config/mention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/config/mention.php -------------------------------------------------------------------------------- /src/Facades/Mention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/src/Facades/Mention.php -------------------------------------------------------------------------------- /src/Mention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/src/Mention.php -------------------------------------------------------------------------------- /src/MentionServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/src/MentionServiceProvider.php -------------------------------------------------------------------------------- /tests/MentionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/tests/MentionTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongm2ez/laravel-mention/HEAD/tests/TestCase.php --------------------------------------------------------------------------------