oriceon/laravel-assets
Composer 安装命令:
composer require oriceon/laravel-assets
包简介
A package for minify or combine css and javascript files
README 文档
README
With this package you can combine and minify your existing css and javascript files automatically.
Installation
Begin by installing this package through Composer.
Run composer require zanysoft/laravel-assets
// config/app.php 'providers' => [ '...', 'ZanySoft\LaravelAssets\AssetsServiceProvider', ]; 'aliases' => [ '...', 'Assets' => 'ZanySoft\LaravelAssets\Facade', ];
Publish the config file:
php artisan vendor:publish --provider="ZanySoft\LaravelAssets\AssetsServiceProvider"
Now you have a Assets facade available.
CSS
// resources/views/hello.blade.php <html> <head> // Pack a simple file {{ Assets::css('/css/main.css', '/storage/cache/css/main.css') }} // Pack a simple file using cache_folder option as storage folder to packed file {{ Assets::css('/css/main.css', 'css/main.css') }} // Packing multiple files {{ Assets::css(['/css/main.css', '/css/bootstrap.css'], '/storage/cache/css/styles.css') }} // Packing multiple files using cache_folder option as storage folder to packed file {{ Assets::css(['/css/main.css', '/css/bootstrap.css'], 'css/styles.css') }} // Packing multiple files with autonaming based {{ Assets::css(['/css/main.css', '/css/bootstrap.css'], '/storage/cache/css/') }} // pack and combine all css files in given folder {{ Assets::cssDir('/css/', '/storage/cache/css/all.css') }} // pack and combine all css files in given folder using cache_folder option as storage folder to packed file {{ Assets::cssDir('/css/', 'css/all.css') }} // Packing multiple folders {{ Assets::cssDir(['/css/', '/theme/'], '/storage/cache/css/all.css') }} // Packing multiple folders with recursive search {{ Assets::cssDir(['/css/', '/theme/'], '/storage/cache/css/all.css', true) }} // Packing multiple folders with recursive search and autonaming {{ Assets::cssDir(['/css/', '/theme/'], '/storage/cache/css/', true) }} // Packing multiple folders with recursive search and autonaming using cache_folder option as storage folder to packed file {{ Assets::cssDir(['/css/', '/theme/'], 'css/', true) }} </head> </html>
CSS url() values will be converted to absolute path to avoid file references problems.
Javascript
// resources/views/hello.blade.php <html> <body> ... // Pack a simple file {{ Assets::js('/js/main.js', '/storage/cache/js/main.js') }} // Pack a simple file using cache_folder option as storage folder to packed file {{ Assets::js('/js/main.js', 'js/main.js') }} // Packing multiple files {{ Assets::js(['/js/main.js', '/js/bootstrap.js'], '/storage/cache/js/styles.js') }} // Packing multiple files using cache_folder option as storage folder to packed file {{ Assets::js(['/js/main.js', '/js/bootstrap.js'], 'js/styles.js') }} // Packing multiple files with autonaming based {{ Assets::js(['/js/main.js', '/js/bootstrap.js'], '/storage/cache/js/') }} // pack and combine all js files in given folder {{ Assets::jsDir('/js/', '/storage/cache/js/all.js') }} // pack and combine all js files in given folder using cache_folder option as storage folder to packed file {{ Assets::jsDir('/js/', 'js/all.js') }} // Packing multiple folders {{ Assets::jsDir(['/js/', '/theme/'], '/storage/cache/js/all.js') }} // Packing multiple folders with recursive search {{ Assets::jsDir(['/js/', '/theme/'], '/storage/cache/js/all.js', true) }} // Packing multiple folders with recursive search and autonaming {{ Assets::jsDir(['/js/', '/theme/'], '/storage/cache/js/', true) }} // Packing multiple folders with recursive search and autonaming using cache_folder option as storage folder to packed file {{ Assets::jsDir(['/js/', '/theme/'], 'js/', true) }} </body> </html>
Config
return array( /* |-------------------------------------------------------------------------- | App environments to not pack |-------------------------------------------------------------------------- | | These environments will not be minified and all individual files are | returned | */ 'ignore_environments' => ['local'], /* |-------------------------------------------------------------------------- | Base folder to store packed files |-------------------------------------------------------------------------- | | If you are using relative paths to second paramenter in css and js | commands, this files will be created with this folder as base. | | This folder in relative to 'public_path' value | */ 'cache_folder' => '/storage/cache/', /* |-------------------------------------------------------------------------- | Check if some file to pack have a recent timestamp |-------------------------------------------------------------------------- | | Compare current packed file with all files to pack. If exists one more | recent than packed file, will be packed again with a new autogenerated | name. | */ 'check_timestamps' => true, /* |-------------------------------------------------------------------------- | Check if you want minify css files or only pack them together |-------------------------------------------------------------------------- | | You can check this option if you want to join and minify all css files or | only join files | */ 'css_minify' => true, /* |-------------------------------------------------------------------------- | Check if you want minify js files or only pack them together |-------------------------------------------------------------------------- | | You can check this option if you want to join and minify all js files or | only join files | */ 'js_minify' => true, );
If you set the 'check_timestamps' option, a timestamp value will be added to final filename.
oriceon/laravel-assets 适用场景与选型建议
oriceon/laravel-assets 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 03 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「assets」 「minify」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 oriceon/laravel-assets 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 oriceon/laravel-assets 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 oriceon/laravel-assets 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Asset Management for PHP
CSS/Javascript Minificator, Compressor and Concatenator for TYPO3 - highly configurable frontend asset optimization for CSS/JS merging, minification and compression with optional body parsing, async/defer loading, inline output, data-ignore exclusions, SRI integrity validation/calculation, external
Caching and compression for Twig assets (JavaScript and CSS).
CSS & JavaScript minifier for Silverstripe
A package for pack css and javascript files
Modification of rmrevin/yii-2-minify-view lib to allow minification of css & js in a load balanced environment
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-06