├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── textit.php ├── src ├── Support │ └── Facades │ │ └── Textit.php ├── Textit.php ├── TextitServiceProvider.php └── helper.php └── tests └── Feature └── TextitTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: dasundev 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/composer.json -------------------------------------------------------------------------------- /config/textit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/config/textit.php -------------------------------------------------------------------------------- /src/Support/Facades/Textit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/src/Support/Facades/Textit.php -------------------------------------------------------------------------------- /src/Textit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/src/Textit.php -------------------------------------------------------------------------------- /src/TextitServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/src/TextitServiceProvider.php -------------------------------------------------------------------------------- /src/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/src/helper.php -------------------------------------------------------------------------------- /tests/Feature/TextitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dasundev/laravel-textit/HEAD/tests/Feature/TextitTest.php --------------------------------------------------------------------------------