arrowsgm/amped-laravel
Composer 安装命令:
composer require arrowsgm/amped-laravel
包简介
An HTML to AMP converter for Laravel based on amp-wp Wordpress plugin
README 文档
README
This package adds possibility to convert existing html content to amp-html. The package uses AMP Plugin for WordPress for content sanitizing and some helper functions from Wordpress for amp-wp plugin.
AMP is a fast-growing framework, but unfortunately, currently, there are no (or at least I can't find it) any working solutions, which can help to provide a valid html to amp-html code converter. According to ampproject/amp-wp#2315, @amproject is preparing to release a PHP-library independent from any CMS, but until that time using amp-wp plugin as a content sanitizer is an easiest solution, even if it has many Wordpress-related code. If you have any issue with package sanitizer, you can easily swap it with your own, just making changes in provided config.
Requirements
- PHP >= 7.3
- Laravel >= 6.x
Update from versions < 0.4.x
You need to change repository url in your composer.json from https://github.com/ampproject/amp-wp to https://github.com/arrowsgm/amp-wp, this is a hard-forked version 1.4.4 of the ampproject/amp-wp package with updated dependencies.
Installation
Add to your composer.json repositories section link to amp-wp plugin:
... "repositories": [ ... { "type": "vcs", "url": "https://github.com/arrowsgm/amp-wp" } ] ...
when require package as usual:
composer require arrowsgm/amped-laravel
Using
You can publish configuration with artisan command:
php artisan vendor:publish --tag=amped-config
or just create amped.php file in the config directory and change required params only.
To convert existing content use provided Amped facade:
... use Arrowsgm\Amped\Facades\Amped; ... class PostController extends Controller { ... public function show(Post $post) { ... $amp_content = Amped::convert($post->content); ... } ... }
You can use Amped facade in the blade templates, alias already provided:
<div class="amp-content">{{ Amped::convert($post->content) }}</div>
Amped class also have inlineCss method to adding custom styles from css file:
{!! Amped::inlineCss('amp.css') !!}
and you can set base amp styles directory with amp_custom_css_path config param.
isDevParam method is useful for amp link building. It returns #development=1 string if laravel application debugging is on:
<a href="{{ route('post.show', $prev_post->slug) }}/amp{!! Amped::isDevParam() !!}" class="links links-prev">{{ $prev_post->name }}</a>
and you can easily navigate through the existing posts with in-browser AMP validation enabled.
arrowsgm/amped-laravel 适用场景与选型建议
arrowsgm/amped-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.39k 次下载、GitHub Stars 达 5, 最近一次更新时间为 2020 年 02 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 arrowsgm/amped-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 arrowsgm/amped-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2020-02-07