├── .styleci.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── assets.php ├── phpunit.xml ├── resources └── views │ ├── footer.blade.php │ └── header.blade.php ├── scrutinizer.yml └── src ├── Assets.php ├── Facades └── AssetsFacade.php ├── HtmlBuilder.php └── Providers └── AssetsServiceProvider.php /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr12 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/composer.json -------------------------------------------------------------------------------- /config/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/config/assets.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/views/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/resources/views/footer.blade.php -------------------------------------------------------------------------------- /resources/views/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/resources/views/header.blade.php -------------------------------------------------------------------------------- /scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/scrutinizer.yml -------------------------------------------------------------------------------- /src/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/src/Assets.php -------------------------------------------------------------------------------- /src/Facades/AssetsFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/src/Facades/AssetsFacade.php -------------------------------------------------------------------------------- /src/HtmlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/src/HtmlBuilder.php -------------------------------------------------------------------------------- /src/Providers/AssetsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botble/laravel-assets/HEAD/src/Providers/AssetsServiceProvider.php --------------------------------------------------------------------------------