dakota/cakephp_less
Composer 安装命令:
composer require dakota/cakephp_less
包简介
CakePHP plugin that converts your .less files to .css using only PHP
README 文档
README
This little Helper converts your .less files into .css without relying on Node.js or client-side parsing. Everything is compiled on the server, cached, and served as regular css through PHP.
Installation
Get the files in place
Composer
If you are using composer, simply add
"dakota/cakephp_less": ">=2.0.0"
to your composer.json file.
Git submodule
If you are developing your application with Git already, you can install the plugin as a submodule. In your git base folder type
git submodule add https://github.com/dakota/less.git Plugin/CakephpLess
Git clone
In your plugin directory type
git clone https://github.com/Dakota/less.git CakephpLess
Initialize lessphp submodule and download files
If you are using Composer, you can skip this step.
In the plugin folder ('Plugins/CakephpLess') type
git submodule init
git submodule update
Create cache and less folders
- Create a folder called
lessinapp/webroot/ - Create a folder called
lessinapp/tmp/cache - Apply
chmod 777to yourcssfolder. (The Less Helper will place all compiled css files in your css-directory)
Usage
Where you want to use LESS files, add the helper. Usually this will be your AppController.
public $helpers = array('CakephpLess.Less');
Next, simply add the less files to your views:
echo $this->Less->css('yourfile');
or if the less file is located in the webroot of a plugin
echo $this->Less->css('yourfile',array('plugin' => 'PluginFolderName'));
or
echo $this->Less->css(array(
'bootstrap/bootstrap',
'prettify',
)
);
It doesn't matter if you link to stolen .css files directly, the Helper will check for the existance of a .less version first, and fall back if it doesn't find one.
If it does find a corresponding .less file with the same name in your less directory, it will compile it to css and place it in your css directory
dakota/cakephp_less 适用场景与选型建议
dakota/cakephp_less 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 23 次下载、GitHub Stars 达 0, 最近一次更新时间为 2013 年 05 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「css」 「cakephp」 「less」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 dakota/cakephp_less 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dakota/cakephp_less 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 dakota/cakephp_less 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
CakePHP 4.x AdminLTE Theme.
A Twig extension to insert css as inline styles with a tag
Caching and compression for Twig assets (JavaScript and CSS).
ZF2 module that allows automation of compiling your LESS with the extra of minifying the files.
Email Toolkit Plugin for CakePHP
Zend Framework 3+ module that provides assets bundling / caching
统计信息
- 总下载量: 23
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-05-30