medzoner/coinhive-bundle
Composer 安装命令:
composer require medzoner/coinhive-bundle
包简介
This bundle provides Coinhive services. It does'nt depend of coinhive.com
关键字:
README 文档
README
This bundle provides Coinhive services. It does'nt depend of coinhive.com
Installation
Step 1: Use composer and enable Bundle
To install CoinhiveBundle with Composer just type in your terminal:
php composer.phar require medzoner/coinhive-bundle
Now, Composer will automatically download all required files, and install them
for you. All that is left to do is to update your AppKernel.php file, and
register the new bundle:
<?php // in AppKernel::registerBundles() $bundles = array( // ... new Medzoner\Bundle\CoinhiveBundle(), // ... );
Step2: Configure the bundle's
Add the following to your config file:
# app/config/config.yml coinhive: config: site_key: '%coinhive.site_key%'
Step3a: Use captcha in form
Add the following to your formType file:
<?php use CoinhiveBundle\Validator\IsTrue; //.... /** * @param FormBuilderInterface $builder * @param array $options */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('coinhive-captcha-token', CoinHiveCaptchaType::class, [ 'mapped' => false, 'constraints' => [ new IsTrue() ] ]) ; } //...
Step3b: Use miner on your site
Add the following to your twig files:
{{ coinhive_miner() }}
Demo
统计信息
- 总下载量: 795
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-10-01