├── .editorconfig ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── config └── estilo.php ├── phpstan.neon └── src ├── CSS.php ├── Estilo.php ├── EstiloWind.php ├── Providers └── EstiloServiceProvider.php ├── Tailwind.php └── helpers.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/composer.json -------------------------------------------------------------------------------- /config/estilo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/config/estilo.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/CSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/src/CSS.php -------------------------------------------------------------------------------- /src/Estilo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/src/Estilo.php -------------------------------------------------------------------------------- /src/EstiloWind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/src/EstiloWind.php -------------------------------------------------------------------------------- /src/Providers/EstiloServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/src/Providers/EstiloServiceProvider.php -------------------------------------------------------------------------------- /src/Tailwind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/src/Tailwind.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WendellAdriel/laravel-estilo/HEAD/src/helpers.php --------------------------------------------------------------------------------