mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[增加]微信模块及Composer二维码组件(进入待开发状态)
This commit is contained in:
parent
71b6ca76de
commit
47cb70c251
38
application/wechat/controller/Article.php
Normal file
38
application/wechat/controller/Article.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 微信文章管理
|
||||
* Class Article
|
||||
* @package app\wechat\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Article extends BasicAdmin {
|
||||
|
||||
public function index($p1Str, $p2Str, $p3Str, $dStr) {
|
||||
list($x1, $y1) = explode(',', $p1Str);
|
||||
list($x2, $y2) = explode(',', $p2Str);
|
||||
list($x3, $y3) = explode(',', $p3Str);
|
||||
list($d1, $d2, $d3) = explode(',', $dStr);
|
||||
$va = (($d2 * $d2 - $d3 * $d3) - ($x2 * $x2 - $x3 * $x3) - ($y2 * $y2 - $y3 * $y3)) / 2;
|
||||
$vb = (($d2 * $d2 - $d1 * $d1) - ($x2 * $x2 - $x1 * $x1) - ($y2 * $y2 - $y1 * $y1)) / 2;
|
||||
$y_point = ($vb * ($x3 - $x2) - $va * ($x1 - $x2)) / (($y1 - $y2) * ($x3 - $x2) - ($y3 - $y2) * ($x1 - $x2));
|
||||
$x_point = ($va - $y_point * ($y3 - $y2)) / ($x3 - $x2);
|
||||
return ['x' => $x_point, 'y' => $y_point];
|
||||
}
|
||||
}
|
36
application/wechat/controller/Config.php
Normal file
36
application/wechat/controller/Config.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 微信配置管理
|
||||
* Class Config
|
||||
* @package app\wechat\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Config extends BasicAdmin {
|
||||
|
||||
public function index() {
|
||||
$this->assign('title', '微信接口配置');
|
||||
return view();
|
||||
}
|
||||
|
||||
public function pay() {
|
||||
$this->assign('title', '微信支付配置');
|
||||
return view();
|
||||
}
|
||||
}
|
32
application/wechat/controller/Fans.php
Normal file
32
application/wechat/controller/Fans.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 微信粉丝管理
|
||||
* Class Fans
|
||||
* @package app\wechat\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Fans extends BasicAdmin {
|
||||
|
||||
public function index() {
|
||||
|
||||
}
|
||||
|
||||
}
|
30
application/wechat/controller/Index.php
Normal file
30
application/wechat/controller/Index.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 微信入口控制器
|
||||
* Class Index
|
||||
* @package app\wechat\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/24 14:43
|
||||
*/
|
||||
class Index extends BasicAdmin {
|
||||
|
||||
public function index() {
|
||||
|
||||
}
|
||||
}
|
38
application/wechat/controller/Keys.php
Normal file
38
application/wechat/controller/Keys.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 微信文章管理
|
||||
* Class Article
|
||||
* @package app\wechat\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Keys extends BasicAdmin {
|
||||
|
||||
public function index() {
|
||||
|
||||
}
|
||||
|
||||
public function subscribe() {
|
||||
|
||||
}
|
||||
|
||||
public function defaults() {
|
||||
|
||||
}
|
||||
}
|
30
application/wechat/controller/Menu.php
Normal file
30
application/wechat/controller/Menu.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 微信菜单管理
|
||||
* Class Menu
|
||||
* @package app\wechat\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class Menu extends BasicAdmin {
|
||||
|
||||
public function index() {
|
||||
|
||||
}
|
||||
}
|
30
application/wechat/controller/News.php
Normal file
30
application/wechat/controller/News.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
|
||||
/**
|
||||
* 微信图文管理
|
||||
* Class News
|
||||
* @package app\wechat\controller
|
||||
* @author Anyon <zoujingli@qq.com>
|
||||
* @date 2017/03/27 14:43
|
||||
*/
|
||||
class News extends BasicAdmin {
|
||||
|
||||
public function index() {
|
||||
|
||||
}
|
||||
}
|
75
application/wechat/view/config.index.html
Normal file
75
application/wechat/view/config.index.html
Normal file
@ -0,0 +1,75 @@
|
||||
{extend name="extra@admin/content"}
|
||||
|
||||
{block name="content"}
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<form class="layui-form layui-box" data-auto="" method="post">
|
||||
<fieldset class="layui-elem-field">
|
||||
<legend>微信对接参数</legend>
|
||||
<div class="layui-field-box" style="padding-right:35px">
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label"></label>
|
||||
<div class="layui-input-inline well" style="width:70%">
|
||||
<div class="input-group">
|
||||
<input type="text" readonly
|
||||
onmouseenter="this.focus(),this.select()"
|
||||
onmouseover="console.log([this])"
|
||||
value="{:url('@wechat/api','',true,true)}"
|
||||
class="layui-input">
|
||||
<a class="input-group-addon" data-tips-text="复制" data-copy="">
|
||||
<i class="fa fa-copy"></i>
|
||||
</a>
|
||||
</div>
|
||||
<p class="help-block" style='margin-bottom:10px'>
|
||||
注意:接口链接的域名必需要备案,分别支持80端口和443端口,建议使用80端口。
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">APPID</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="text" name="wechat_appid" required="required" title="请输入公众号APPID"
|
||||
placeholder="公众号APPID(必填)" value="{:sysconf('wechat_appid')}" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">AppSecret</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="text" name="wechat_appsecret" required="required" title="请输入公众号AppSecret"
|
||||
placeholder="公众号AppSecret(必填)" value="{:sysconf('wechat_appsecret')}"
|
||||
class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">Token</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="text" name="wechat_token" required="required" title="请输入TOKEN"
|
||||
placeholder="接口认证TOKEN(必填)" value="{:sysconf('wechat_token')}" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">AesKey</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="text" name="wechat_encodingaeskey"
|
||||
title='请输入43位消息加密密钥' pattern="^.{43}$" maxlength='43'
|
||||
placeholder="消息加密密钥,若开启了消息加密时必需填写(可选)"
|
||||
value="{:sysconf('wechat_encodingaeskey')}" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="layui-form-item text-center">
|
||||
<button class="layui-btn" type="submit">立即提交</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/block}
|
126
application/wechat/view/config.pay.html
Normal file
126
application/wechat/view/config.pay.html
Normal file
@ -0,0 +1,126 @@
|
||||
{extend name="extra@admin/content"}
|
||||
|
||||
{block name="content"}
|
||||
<form onsubmit="return false;"
|
||||
action="{:url()}"
|
||||
data-auto="true"
|
||||
method="POST"
|
||||
class='form-horizontal'
|
||||
style='padding-top:20px'>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">商户 ID</label>
|
||||
<div class='col-sm-9'>
|
||||
<input type='tel'
|
||||
placeholder="请输入10位商户MCH_ID(必填)"
|
||||
title='请输入10位数字商户MCH_ID'
|
||||
required="required"
|
||||
pattern="^\d{10}$"
|
||||
maxlength='10'
|
||||
name='wechat_mch_id'
|
||||
class='form-control input-sm'
|
||||
value='{:sysconf("wechat_mch_id")}'/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">商户密钥</label>
|
||||
<div class='col-sm-9'>
|
||||
<input type='password'
|
||||
placeholder="请输入32位商户密钥(必填)"
|
||||
pattern="^.{32}$"
|
||||
maxlength="32"
|
||||
required title='请输入32位商户密钥'
|
||||
name='wechat_partnerkey'
|
||||
class='form-control input-sm'
|
||||
value='{:sysconf("wechat_partnerkey")}'/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">支付证书</label>
|
||||
<div class="col-sm-9">
|
||||
<input onchange="$(this).next().html('已选择支付证书 (cert.zip)'), $('[data-pay-test]').remove()"
|
||||
type="hidden" name="cert_zip" value=""/>
|
||||
<div class="well" style="width:54%;text-align:center;cursor:pointer" data-file
|
||||
data-type="zip" data-field="cert_zip" data-uptype="local" data-one="true">
|
||||
<span class="fa fa-check-circle-o" style="color:#00B83F;font-size:16px"></span>
|
||||
已设置支付证书 (cert.zip)
|
||||
</div>
|
||||
<p class="help-block">退款操作时需要上传此证书,在<a href="https://pay.weixin.qq.com" target="_blank">微信支付商户平台</a>下载cert.zip,直接上传即可!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hr-line-dashed"></div>
|
||||
<input type='hidden' name='id' value='10000'/>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-sm-6 col-sm-offset-2 text-center">
|
||||
<button type="submit" class="btn btn-success navbar-btn">保存配置</button>
|
||||
<button type="button" onerror="alert(this.src)" data-pay-test
|
||||
class="btn btn-warning navbar-btn">支付测试
|
||||
</button>
|
||||
<style>
|
||||
.pay-qrc-test {
|
||||
height: 248px;
|
||||
width: 248px;
|
||||
background: url('http://basic.data.cuci.cc/static/plugs/layui/layer/skin/default/loading-2.gif') no-repeat center center
|
||||
}
|
||||
|
||||
.refund-qrc-test {
|
||||
text-align: center;
|
||||
padding: 8px
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
$(function () {
|
||||
/* global layer */
|
||||
$('[data-pay-test]').on('click', function () {
|
||||
var timer = null;
|
||||
layer.open({
|
||||
type: 1, title: false, closeBtn: 1, shadeClose: true,
|
||||
content: function () {
|
||||
return '<img class="pay-qrc-test" src="{src}"/>'.replace('{src}', 'http://basic.data.cuci.cc/index.php/wechat/conf/pay.html?action=payqrc')
|
||||
+ '<p style="text-align:center">请用微信扫码测试支付!</p>'
|
||||
+ '<p class="refund-qrc-test"><a class="btn btn-xs btn-warning">退款测试</a></p>';
|
||||
}(),
|
||||
end: function () {
|
||||
(timer !== null) && window.clearTimeout(timer), timer = null;
|
||||
},
|
||||
success: function (layero, index) {
|
||||
$(layero).find('.pay-qrc-test').on('error', function () {
|
||||
$.form.load(this.src), layer.close(index);
|
||||
}).on('load', function () {
|
||||
var img = this;
|
||||
(timer !== null) && window.clearTimeout(timer), timer = null;
|
||||
timer = setTimeout(function () {
|
||||
img.src = img.src.replace(/\&t=\d*/, '') + '&t=' + (new Date().getTime());
|
||||
}, 3000);
|
||||
});
|
||||
$(layero).on('click', '.refund-qrc-test a', function () {
|
||||
$.msg.loading();
|
||||
$.get('http://basic.data.cuci.cc/index.php/wechat/conf/pay.html?action=refund', function (ret) {
|
||||
if (ret.code === "SUCCESS") {
|
||||
$.msg.tips(ret.info, 2, function () {
|
||||
(timer !== null) && window.clearTimeout(timer), timer = null;
|
||||
layer.close(index);
|
||||
});
|
||||
} else {
|
||||
$.msg.tips(ret.info, 2);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
{/block}
|
@ -24,7 +24,8 @@
|
||||
"topthink/framework": "^5.0",
|
||||
"topthink/think-captcha": "^1.0",
|
||||
"topthink/think-mongo": "^1.1",
|
||||
"topthink/think-queue": "^1.0"
|
||||
"topthink/think-queue": "^1.0",
|
||||
"endroid/qrcode": "^1.9"
|
||||
},
|
||||
"extra": {
|
||||
"think-path": "thinkphp"
|
||||
|
118
composer.lock
generated
118
composer.lock
generated
@ -4,9 +4,69 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"hash": "22456adca8b8612f6dd35e7bac091d31",
|
||||
"content-hash": "37d78544d8fdef59fac0a30784e660a4",
|
||||
"hash": "00c7fd31fef687befa6355a3a5b42d51",
|
||||
"content-hash": "99e422492ce63e615c7a1971c49eaf13",
|
||||
"packages": [
|
||||
{
|
||||
"name": "endroid/qrcode",
|
||||
"version": "1.9.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/endroid/QrCode.git",
|
||||
"reference": "ab09b42778ad67cfe850f9c23165f8d08b756680"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://files.phpcomposer.com/files/endroid/QrCode/ab09b42778ad67cfe850f9c23165f8d08b756680.zip",
|
||||
"reference": "ab09b42778ad67cfe850f9c23165f8d08b756680",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-gd": "*",
|
||||
"php": ">=5.4",
|
||||
"symfony/options-resolver": "^2.3|^3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.0|^5.0",
|
||||
"sensio/framework-extra-bundle": "^3.0",
|
||||
"symfony/browser-kit": "^2.3|^3.0",
|
||||
"symfony/framework-bundle": "^2.3|^3.0",
|
||||
"symfony/http-kernel": "^2.3|^3.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Endroid\\QrCode\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jeroen van den Enden",
|
||||
"email": "info@endroid.nl",
|
||||
"homepage": "http://endroid.nl/"
|
||||
}
|
||||
],
|
||||
"description": "Endroid QR Code",
|
||||
"homepage": "https://github.com/endroid/QrCode",
|
||||
"keywords": [
|
||||
"bundle",
|
||||
"code",
|
||||
"endroid",
|
||||
"qr",
|
||||
"qrcode",
|
||||
"symfony"
|
||||
],
|
||||
"time": "2017-01-03 11:02:14"
|
||||
},
|
||||
{
|
||||
"name": "pclzip/pclzip",
|
||||
"version": "2.8.2",
|
||||
@ -95,6 +155,60 @@
|
||||
],
|
||||
"time": "2016-11-18 02:57:31"
|
||||
},
|
||||
{
|
||||
"name": "symfony/options-resolver",
|
||||
"version": "v3.2.6",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/options-resolver.git",
|
||||
"reference": "56e3d0a41313f8a54326851f10690d591e62a24c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://files.phpcomposer.com/files/symfony/options-resolver/56e3d0a41313f8a54326851f10690d591e62a24c.zip",
|
||||
"reference": "56e3d0a41313f8a54326851f10690d591e62a24c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.5.9"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.2-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\OptionsResolver\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony OptionsResolver Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"config",
|
||||
"configuration",
|
||||
"options"
|
||||
],
|
||||
"time": "2017-02-21 09:12:04"
|
||||
},
|
||||
{
|
||||
"name": "topthink/framework",
|
||||
"version": "v5.0.7",
|
||||
|
202
vendor/composer/autoload_classmap.php
vendored
202
vendor/composer/autoload_classmap.php
vendored
@ -8,206 +8,4 @@ $baseDir = dirname($vendorDir);
|
||||
return array(
|
||||
'Ip2Region' => $vendorDir . '/zoujingli/ip2region/Ip2Region.php',
|
||||
'PclZip' => $vendorDir . '/pclzip/pclzip/pclzip.lib.php',
|
||||
'Qiniu\\Auth' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Auth.php',
|
||||
'Qiniu\\Config' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Config.php',
|
||||
'Qiniu\\Etag' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Etag.php',
|
||||
'Qiniu\\Http\\Client' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Http/Client.php',
|
||||
'Qiniu\\Http\\Error' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Http/Error.php',
|
||||
'Qiniu\\Http\\Request' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Http/Request.php',
|
||||
'Qiniu\\Http\\Response' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Http/Response.php',
|
||||
'Qiniu\\Processing\\ImageUrlBuilder' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Processing/ImageUrlBuilder.php',
|
||||
'Qiniu\\Processing\\Operation' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Processing/Operation.php',
|
||||
'Qiniu\\Processing\\PersistentFop' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Processing/PersistentFop.php',
|
||||
'Qiniu\\Storage\\BucketManager' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Storage/BucketManager.php',
|
||||
'Qiniu\\Storage\\FormUploader' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Storage/FormUploader.php',
|
||||
'Qiniu\\Storage\\ResumeUploader' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Storage/ResumeUploader.php',
|
||||
'Qiniu\\Storage\\UploadManager' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Storage/UploadManager.php',
|
||||
'Qiniu\\Zone' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/Zone.php',
|
||||
'Wechat\\Lib\\Cache' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/Lib/Cache.php',
|
||||
'Wechat\\Lib\\Common' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/Lib/Common.php',
|
||||
'Wechat\\Lib\\Tools' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/Lib/Tools.php',
|
||||
'Wechat\\Loader' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/Loader.php',
|
||||
'Wechat\\WechatCard' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatCard.php',
|
||||
'Wechat\\WechatCustom' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatCustom.php',
|
||||
'Wechat\\WechatDevice' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatDevice.php',
|
||||
'Wechat\\WechatExtends' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatExtends.php',
|
||||
'Wechat\\WechatMedia' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatMedia.php',
|
||||
'Wechat\\WechatMenu' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatMenu.php',
|
||||
'Wechat\\WechatOauth' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatOauth.php',
|
||||
'Wechat\\WechatPay' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatPay.php',
|
||||
'Wechat\\WechatPoi' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatPoi.php',
|
||||
'Wechat\\WechatReceive' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatReceive.php',
|
||||
'Wechat\\WechatScript' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatScript.php',
|
||||
'Wechat\\WechatService' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatService.php',
|
||||
'Wechat\\WechatUser' => $vendorDir . '/zoujingli/wechat-php-sdk/Wechat/WechatUser.php',
|
||||
'think\\App' => $baseDir . '/thinkphp/library/think/App.php',
|
||||
'think\\Build' => $baseDir . '/thinkphp/library/think/Build.php',
|
||||
'think\\Cache' => $baseDir . '/thinkphp/library/think/Cache.php',
|
||||
'think\\Collection' => $baseDir . '/thinkphp/library/think/Collection.php',
|
||||
'think\\Config' => $baseDir . '/thinkphp/library/think/Config.php',
|
||||
'think\\Console' => $baseDir . '/thinkphp/library/think/Console.php',
|
||||
'think\\Controller' => $baseDir . '/thinkphp/library/think/Controller.php',
|
||||
'think\\Cookie' => $baseDir . '/thinkphp/library/think/Cookie.php',
|
||||
'think\\Db' => $baseDir . '/thinkphp/library/think/Db.php',
|
||||
'think\\Debug' => $baseDir . '/thinkphp/library/think/Debug.php',
|
||||
'think\\Env' => $baseDir . '/thinkphp/library/think/Env.php',
|
||||
'think\\Error' => $baseDir . '/thinkphp/library/think/Error.php',
|
||||
'think\\Exception' => $baseDir . '/thinkphp/library/think/Exception.php',
|
||||
'think\\File' => $baseDir . '/thinkphp/library/think/File.php',
|
||||
'think\\Hook' => $baseDir . '/thinkphp/library/think/Hook.php',
|
||||
'think\\Lang' => $baseDir . '/thinkphp/library/think/Lang.php',
|
||||
'think\\Loader' => $baseDir . '/thinkphp/library/think/Loader.php',
|
||||
'think\\Log' => $baseDir . '/thinkphp/library/think/Log.php',
|
||||
'think\\Model' => $baseDir . '/thinkphp/library/think/Model.php',
|
||||
'think\\Paginator' => $baseDir . '/thinkphp/library/think/Paginator.php',
|
||||
'think\\Process' => $baseDir . '/thinkphp/library/think/Process.php',
|
||||
'think\\Queue' => $vendorDir . '/topthink/think-queue/src/Queue.php',
|
||||
'think\\Request' => $baseDir . '/thinkphp/library/think/Request.php',
|
||||
'think\\Response' => $baseDir . '/thinkphp/library/think/Response.php',
|
||||
'think\\Route' => $baseDir . '/thinkphp/library/think/Route.php',
|
||||
'think\\Session' => $baseDir . '/thinkphp/library/think/Session.php',
|
||||
'think\\Template' => $baseDir . '/thinkphp/library/think/Template.php',
|
||||
'think\\Url' => $baseDir . '/thinkphp/library/think/Url.php',
|
||||
'think\\Validate' => $baseDir . '/thinkphp/library/think/Validate.php',
|
||||
'think\\View' => $baseDir . '/thinkphp/library/think/View.php',
|
||||
'think\\cache\\Driver' => $baseDir . '/thinkphp/library/think/cache/Driver.php',
|
||||
'think\\cache\\driver\\File' => $baseDir . '/thinkphp/library/think/cache/driver/File.php',
|
||||
'think\\cache\\driver\\Lite' => $baseDir . '/thinkphp/library/think/cache/driver/Lite.php',
|
||||
'think\\cache\\driver\\Memcache' => $baseDir . '/thinkphp/library/think/cache/driver/Memcache.php',
|
||||
'think\\cache\\driver\\Memcached' => $baseDir . '/thinkphp/library/think/cache/driver/Memcached.php',
|
||||
'think\\cache\\driver\\Redis' => $baseDir . '/thinkphp/library/think/cache/driver/Redis.php',
|
||||
'think\\cache\\driver\\Sqlite' => $baseDir . '/thinkphp/library/think/cache/driver/Sqlite.php',
|
||||
'think\\cache\\driver\\Wincache' => $baseDir . '/thinkphp/library/think/cache/driver/Wincache.php',
|
||||
'think\\cache\\driver\\Xcache' => $baseDir . '/thinkphp/library/think/cache/driver/Xcache.php',
|
||||
'think\\captcha\\Captcha' => $vendorDir . '/topthink/think-captcha/src/Captcha.php',
|
||||
'think\\captcha\\CaptchaController' => $vendorDir . '/topthink/think-captcha/src/CaptchaController.php',
|
||||
'think\\composer\\Plugin' => $vendorDir . '/topthink/think-installer/src/Plugin.php',
|
||||
'think\\composer\\ThinkExtend' => $vendorDir . '/topthink/think-installer/src/ThinkExtend.php',
|
||||
'think\\composer\\ThinkFramework' => $vendorDir . '/topthink/think-installer/src/ThinkFramework.php',
|
||||
'think\\composer\\ThinkTesting' => $vendorDir . '/topthink/think-installer/src/ThinkTesting.php',
|
||||
'think\\config\\driver\\Ini' => $baseDir . '/thinkphp/library/think/config/driver/Ini.php',
|
||||
'think\\config\\driver\\Json' => $baseDir . '/thinkphp/library/think/config/driver/Json.php',
|
||||
'think\\config\\driver\\Xml' => $baseDir . '/thinkphp/library/think/config/driver/Xml.php',
|
||||
'think\\console\\Command' => $baseDir . '/thinkphp/library/think/console/Command.php',
|
||||
'think\\console\\Input' => $baseDir . '/thinkphp/library/think/console/Input.php',
|
||||
'think\\console\\Output' => $baseDir . '/thinkphp/library/think/console/Output.php',
|
||||
'think\\console\\command\\Build' => $baseDir . '/thinkphp/library/think/console/command/Build.php',
|
||||
'think\\console\\command\\Clear' => $baseDir . '/thinkphp/library/think/console/command/Clear.php',
|
||||
'think\\console\\command\\Help' => $baseDir . '/thinkphp/library/think/console/command/Help.php',
|
||||
'think\\console\\command\\Lists' => $baseDir . '/thinkphp/library/think/console/command/Lists.php',
|
||||
'think\\console\\command\\Make' => $baseDir . '/thinkphp/library/think/console/command/Make.php',
|
||||
'think\\console\\command\\make\\Controller' => $baseDir . '/thinkphp/library/think/console/command/make/Controller.php',
|
||||
'think\\console\\command\\make\\Model' => $baseDir . '/thinkphp/library/think/console/command/make/Model.php',
|
||||
'think\\console\\command\\optimize\\Autoload' => $baseDir . '/thinkphp/library/think/console/command/optimize/Autoload.php',
|
||||
'think\\console\\command\\optimize\\Config' => $baseDir . '/thinkphp/library/think/console/command/optimize/Config.php',
|
||||
'think\\console\\command\\optimize\\Route' => $baseDir . '/thinkphp/library/think/console/command/optimize/Route.php',
|
||||
'think\\console\\command\\optimize\\Schema' => $baseDir . '/thinkphp/library/think/console/command/optimize/Schema.php',
|
||||
'think\\console\\input\\Argument' => $baseDir . '/thinkphp/library/think/console/input/Argument.php',
|
||||
'think\\console\\input\\Definition' => $baseDir . '/thinkphp/library/think/console/input/Definition.php',
|
||||
'think\\console\\input\\Option' => $baseDir . '/thinkphp/library/think/console/input/Option.php',
|
||||
'think\\console\\output\\Ask' => $baseDir . '/thinkphp/library/think/console/output/Ask.php',
|
||||
'think\\console\\output\\Descriptor' => $baseDir . '/thinkphp/library/think/console/output/Descriptor.php',
|
||||
'think\\console\\output\\Formatter' => $baseDir . '/thinkphp/library/think/console/output/Formatter.php',
|
||||
'think\\console\\output\\Question' => $baseDir . '/thinkphp/library/think/console/output/Question.php',
|
||||
'think\\console\\output\\descriptor\\Console' => $baseDir . '/thinkphp/library/think/console/output/descriptor/Console.php',
|
||||
'think\\console\\output\\driver\\Buffer' => $baseDir . '/thinkphp/library/think/console/output/driver/Buffer.php',
|
||||
'think\\console\\output\\driver\\Console' => $baseDir . '/thinkphp/library/think/console/output/driver/Console.php',
|
||||
'think\\console\\output\\driver\\Nothing' => $baseDir . '/thinkphp/library/think/console/output/driver/Nothing.php',
|
||||
'think\\console\\output\\formatter\\Stack' => $baseDir . '/thinkphp/library/think/console/output/formatter/Stack.php',
|
||||
'think\\console\\output\\formatter\\Style' => $baseDir . '/thinkphp/library/think/console/output/formatter/Style.php',
|
||||
'think\\console\\output\\question\\Choice' => $baseDir . '/thinkphp/library/think/console/output/question/Choice.php',
|
||||
'think\\console\\output\\question\\Confirmation' => $baseDir . '/thinkphp/library/think/console/output/question/Confirmation.php',
|
||||
'think\\controller\\Rest' => $baseDir . '/thinkphp/library/think/controller/Rest.php',
|
||||
'think\\controller\\Yar' => $baseDir . '/thinkphp/library/think/controller/Yar.php',
|
||||
'think\\db\\Builder' => $baseDir . '/thinkphp/library/think/db/Builder.php',
|
||||
'think\\db\\Connection' => $baseDir . '/thinkphp/library/think/db/Connection.php',
|
||||
'think\\db\\Query' => $baseDir . '/thinkphp/library/think/db/Query.php',
|
||||
'think\\db\\builder\\Mysql' => $baseDir . '/thinkphp/library/think/db/builder/Mysql.php',
|
||||
'think\\db\\builder\\Pgsql' => $baseDir . '/thinkphp/library/think/db/builder/Pgsql.php',
|
||||
'think\\db\\builder\\Sqlite' => $baseDir . '/thinkphp/library/think/db/builder/Sqlite.php',
|
||||
'think\\db\\builder\\Sqlsrv' => $baseDir . '/thinkphp/library/think/db/builder/Sqlsrv.php',
|
||||
'think\\db\\connector\\Mysql' => $baseDir . '/thinkphp/library/think/db/connector/Mysql.php',
|
||||
'think\\db\\connector\\Pgsql' => $baseDir . '/thinkphp/library/think/db/connector/Pgsql.php',
|
||||
'think\\db\\connector\\Sqlite' => $baseDir . '/thinkphp/library/think/db/connector/Sqlite.php',
|
||||
'think\\db\\connector\\Sqlsrv' => $baseDir . '/thinkphp/library/think/db/connector/Sqlsrv.php',
|
||||
'think\\db\\exception\\BindParamException' => $baseDir . '/thinkphp/library/think/db/exception/BindParamException.php',
|
||||
'think\\db\\exception\\DataNotFoundException' => $baseDir . '/thinkphp/library/think/db/exception/DataNotFoundException.php',
|
||||
'think\\db\\exception\\ModelNotFoundException' => $baseDir . '/thinkphp/library/think/db/exception/ModelNotFoundException.php',
|
||||
'think\\debug\\Console' => $baseDir . '/thinkphp/library/think/debug/Console.php',
|
||||
'think\\debug\\Html' => $baseDir . '/thinkphp/library/think/debug/Html.php',
|
||||
'think\\exception\\ClassNotFoundException' => $baseDir . '/thinkphp/library/think/exception/ClassNotFoundException.php',
|
||||
'think\\exception\\DbException' => $baseDir . '/thinkphp/library/think/exception/DbException.php',
|
||||
'think\\exception\\ErrorException' => $baseDir . '/thinkphp/library/think/exception/ErrorException.php',
|
||||
'think\\exception\\Handle' => $baseDir . '/thinkphp/library/think/exception/Handle.php',
|
||||
'think\\exception\\HttpException' => $baseDir . '/thinkphp/library/think/exception/HttpException.php',
|
||||
'think\\exception\\HttpResponseException' => $baseDir . '/thinkphp/library/think/exception/HttpResponseException.php',
|
||||
'think\\exception\\PDOException' => $baseDir . '/thinkphp/library/think/exception/PDOException.php',
|
||||
'think\\exception\\RouteNotFoundException' => $baseDir . '/thinkphp/library/think/exception/RouteNotFoundException.php',
|
||||
'think\\exception\\TemplateNotFoundException' => $baseDir . '/thinkphp/library/think/exception/TemplateNotFoundException.php',
|
||||
'think\\exception\\ThrowableError' => $baseDir . '/thinkphp/library/think/exception/ThrowableError.php',
|
||||
'think\\exception\\ValidateException' => $baseDir . '/thinkphp/library/think/exception/ValidateException.php',
|
||||
'think\\helper\\Arr' => $vendorDir . '/topthink/think-helper/src/Arr.php',
|
||||
'think\\helper\\Hash' => $vendorDir . '/topthink/think-helper/src/Hash.php',
|
||||
'think\\helper\\Str' => $vendorDir . '/topthink/think-helper/src/Str.php',
|
||||
'think\\helper\\Time' => $vendorDir . '/topthink/think-helper/src/Time.php',
|
||||
'think\\helper\\hash\\Bcrypt' => $vendorDir . '/topthink/think-helper/src/hash/Bcrypt.php',
|
||||
'think\\helper\\hash\\Md5' => $vendorDir . '/topthink/think-helper/src/hash/Md5.php',
|
||||
'think\\log\\driver\\File' => $baseDir . '/thinkphp/library/think/log/driver/File.php',
|
||||
'think\\log\\driver\\Socket' => $baseDir . '/thinkphp/library/think/log/driver/Socket.php',
|
||||
'think\\log\\driver\\Test' => $baseDir . '/thinkphp/library/think/log/driver/Test.php',
|
||||
'think\\model\\Collection' => $baseDir . '/thinkphp/library/think/model/Collection.php',
|
||||
'think\\model\\Merge' => $baseDir . '/thinkphp/library/think/model/Merge.php',
|
||||
'think\\model\\Pivot' => $baseDir . '/thinkphp/library/think/model/Pivot.php',
|
||||
'think\\model\\Relation' => $baseDir . '/thinkphp/library/think/model/Relation.php',
|
||||
'think\\model\\relation\\BelongsTo' => $baseDir . '/thinkphp/library/think/model/relation/BelongsTo.php',
|
||||
'think\\model\\relation\\BelongsToMany' => $baseDir . '/thinkphp/library/think/model/relation/BelongsToMany.php',
|
||||
'think\\model\\relation\\HasMany' => $baseDir . '/thinkphp/library/think/model/relation/HasMany.php',
|
||||
'think\\model\\relation\\HasManyThrough' => $baseDir . '/thinkphp/library/think/model/relation/HasManyThrough.php',
|
||||
'think\\model\\relation\\HasOne' => $baseDir . '/thinkphp/library/think/model/relation/HasOne.php',
|
||||
'think\\model\\relation\\MorphMany' => $baseDir . '/thinkphp/library/think/model/relation/MorphMany.php',
|
||||
'think\\model\\relation\\MorphTo' => $baseDir . '/thinkphp/library/think/model/relation/MorphTo.php',
|
||||
'think\\model\\relation\\OneToOne' => $baseDir . '/thinkphp/library/think/model/relation/OneToOne.php',
|
||||
'think\\mongo\\Builder' => $vendorDir . '/topthink/think-mongo/src/Builder.php',
|
||||
'think\\mongo\\Connection' => $vendorDir . '/topthink/think-mongo/src/Connection.php',
|
||||
'think\\mongo\\Query' => $vendorDir . '/topthink/think-mongo/src/Query.php',
|
||||
'think\\paginator\\driver\\Bootstrap' => $baseDir . '/thinkphp/library/think/paginator/driver/Bootstrap.php',
|
||||
'think\\process\\Builder' => $baseDir . '/thinkphp/library/think/process/Builder.php',
|
||||
'think\\process\\Utils' => $baseDir . '/thinkphp/library/think/process/Utils.php',
|
||||
'think\\process\\exception\\Failed' => $baseDir . '/thinkphp/library/think/process/exception/Failed.php',
|
||||
'think\\process\\exception\\Timeout' => $baseDir . '/thinkphp/library/think/process/exception/Timeout.php',
|
||||
'think\\process\\pipes\\Pipes' => $baseDir . '/thinkphp/library/think/process/pipes/Pipes.php',
|
||||
'think\\process\\pipes\\Unix' => $baseDir . '/thinkphp/library/think/process/pipes/Unix.php',
|
||||
'think\\process\\pipes\\Windows' => $baseDir . '/thinkphp/library/think/process/pipes/Windows.php',
|
||||
'think\\queue\\CallQueuedHandler' => $vendorDir . '/topthink/think-queue/src/queue/CallQueuedHandler.php',
|
||||
'think\\queue\\Connector' => $vendorDir . '/topthink/think-queue/src/queue/Connector.php',
|
||||
'think\\queue\\Job' => $vendorDir . '/topthink/think-queue/src/queue/Job.php',
|
||||
'think\\queue\\Listener' => $vendorDir . '/topthink/think-queue/src/queue/Listener.php',
|
||||
'think\\queue\\Queueable' => $vendorDir . '/topthink/think-queue/src/queue/Queueable.php',
|
||||
'think\\queue\\ShouldQueue' => $vendorDir . '/topthink/think-queue/src/queue/ShouldQueue.php',
|
||||
'think\\queue\\Worker' => $vendorDir . '/topthink/think-queue/src/queue/Worker.php',
|
||||
'think\\queue\\command\\Listen' => $vendorDir . '/topthink/think-queue/src/queue/command/Listen.php',
|
||||
'think\\queue\\command\\Restart' => $vendorDir . '/topthink/think-queue/src/queue/command/Restart.php',
|
||||
'think\\queue\\command\\Subscribe' => $vendorDir . '/topthink/think-queue/src/queue/command/Subscribe.php',
|
||||
'think\\queue\\command\\Work' => $vendorDir . '/topthink/think-queue/src/queue/command/Work.php',
|
||||
'think\\queue\\connector\\Database' => $vendorDir . '/topthink/think-queue/src/queue/connector/Database.php',
|
||||
'think\\queue\\connector\\Redis' => $vendorDir . '/topthink/think-queue/src/queue/connector/Redis.php',
|
||||
'think\\queue\\connector\\Sync' => $vendorDir . '/topthink/think-queue/src/queue/connector/Sync.php',
|
||||
'think\\queue\\connector\\Topthink' => $vendorDir . '/topthink/think-queue/src/queue/connector/Topthink.php',
|
||||
'think\\queue\\job\\Database' => $vendorDir . '/topthink/think-queue/src/queue/job/Database.php',
|
||||
'think\\queue\\job\\Redis' => $vendorDir . '/topthink/think-queue/src/queue/job/Redis.php',
|
||||
'think\\queue\\job\\Sync' => $vendorDir . '/topthink/think-queue/src/queue/job/Sync.php',
|
||||
'think\\queue\\job\\Topthink' => $vendorDir . '/topthink/think-queue/src/queue/job/Topthink.php',
|
||||
'think\\response\\Json' => $baseDir . '/thinkphp/library/think/response/Json.php',
|
||||
'think\\response\\Jsonp' => $baseDir . '/thinkphp/library/think/response/Jsonp.php',
|
||||
'think\\response\\Redirect' => $baseDir . '/thinkphp/library/think/response/Redirect.php',
|
||||
'think\\response\\View' => $baseDir . '/thinkphp/library/think/response/View.php',
|
||||
'think\\response\\Xml' => $baseDir . '/thinkphp/library/think/response/Xml.php',
|
||||
'think\\session\\driver\\Memcache' => $baseDir . '/thinkphp/library/think/session/driver/Memcache.php',
|
||||
'think\\session\\driver\\Memcached' => $baseDir . '/thinkphp/library/think/session/driver/Memcached.php',
|
||||
'think\\session\\driver\\Redis' => $baseDir . '/thinkphp/library/think/session/driver/Redis.php',
|
||||
'think\\template\\TagLib' => $baseDir . '/thinkphp/library/think/template/TagLib.php',
|
||||
'think\\template\\driver\\File' => $baseDir . '/thinkphp/library/think/template/driver/File.php',
|
||||
'think\\template\\taglib\\Cx' => $baseDir . '/thinkphp/library/think/template/taglib/Cx.php',
|
||||
'think\\view\\driver\\Php' => $baseDir . '/thinkphp/library/think/view/driver/Php.php',
|
||||
'think\\view\\driver\\Think' => $baseDir . '/thinkphp/library/think/view/driver/Think.php',
|
||||
);
|
||||
|
2
vendor/composer/autoload_psr4.php
vendored
2
vendor/composer/autoload_psr4.php
vendored
@ -12,5 +12,7 @@ return array(
|
||||
'think\\captcha\\' => array($vendorDir . '/topthink/think-captcha/src'),
|
||||
'think\\' => array($baseDir . '/thinkphp/library/think', $vendorDir . '/topthink/think-queue/src'),
|
||||
'Wechat\\' => array($vendorDir . '/zoujingli/wechat-php-sdk/Wechat'),
|
||||
'Symfony\\Component\\OptionsResolver\\' => array($vendorDir . '/symfony/options-resolver'),
|
||||
'Qiniu\\' => array($vendorDir . '/qiniu/php-sdk/src/Qiniu'),
|
||||
'Endroid\\QrCode\\' => array($vendorDir . '/endroid/qrcode/src'),
|
||||
);
|
||||
|
218
vendor/composer/autoload_static.php
vendored
218
vendor/composer/autoload_static.php
vendored
@ -26,10 +26,18 @@ class ComposerStaticInit2bdb1a4ea6b2ecb142c59aa1efc16953
|
||||
array (
|
||||
'Wechat\\' => 7,
|
||||
),
|
||||
'S' =>
|
||||
array (
|
||||
'Symfony\\Component\\OptionsResolver\\' => 34,
|
||||
),
|
||||
'Q' =>
|
||||
array (
|
||||
'Qiniu\\' => 6,
|
||||
),
|
||||
'E' =>
|
||||
array (
|
||||
'Endroid\\QrCode\\' => 15,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
@ -58,217 +66,23 @@ class ComposerStaticInit2bdb1a4ea6b2ecb142c59aa1efc16953
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat',
|
||||
),
|
||||
'Symfony\\Component\\OptionsResolver\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/options-resolver',
|
||||
),
|
||||
'Qiniu\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu',
|
||||
),
|
||||
'Endroid\\QrCode\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/endroid/qrcode/src',
|
||||
),
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Ip2Region' => __DIR__ . '/..' . '/zoujingli/ip2region/Ip2Region.php',
|
||||
'PclZip' => __DIR__ . '/..' . '/pclzip/pclzip/pclzip.lib.php',
|
||||
'Qiniu\\Auth' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Auth.php',
|
||||
'Qiniu\\Config' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Config.php',
|
||||
'Qiniu\\Etag' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Etag.php',
|
||||
'Qiniu\\Http\\Client' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Http/Client.php',
|
||||
'Qiniu\\Http\\Error' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Http/Error.php',
|
||||
'Qiniu\\Http\\Request' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Http/Request.php',
|
||||
'Qiniu\\Http\\Response' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Http/Response.php',
|
||||
'Qiniu\\Processing\\ImageUrlBuilder' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Processing/ImageUrlBuilder.php',
|
||||
'Qiniu\\Processing\\Operation' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Processing/Operation.php',
|
||||
'Qiniu\\Processing\\PersistentFop' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Processing/PersistentFop.php',
|
||||
'Qiniu\\Storage\\BucketManager' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Storage/BucketManager.php',
|
||||
'Qiniu\\Storage\\FormUploader' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Storage/FormUploader.php',
|
||||
'Qiniu\\Storage\\ResumeUploader' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Storage/ResumeUploader.php',
|
||||
'Qiniu\\Storage\\UploadManager' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Storage/UploadManager.php',
|
||||
'Qiniu\\Zone' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/Zone.php',
|
||||
'Wechat\\Lib\\Cache' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/Lib/Cache.php',
|
||||
'Wechat\\Lib\\Common' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/Lib/Common.php',
|
||||
'Wechat\\Lib\\Tools' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/Lib/Tools.php',
|
||||
'Wechat\\Loader' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/Loader.php',
|
||||
'Wechat\\WechatCard' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatCard.php',
|
||||
'Wechat\\WechatCustom' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatCustom.php',
|
||||
'Wechat\\WechatDevice' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatDevice.php',
|
||||
'Wechat\\WechatExtends' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatExtends.php',
|
||||
'Wechat\\WechatMedia' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatMedia.php',
|
||||
'Wechat\\WechatMenu' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatMenu.php',
|
||||
'Wechat\\WechatOauth' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatOauth.php',
|
||||
'Wechat\\WechatPay' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatPay.php',
|
||||
'Wechat\\WechatPoi' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatPoi.php',
|
||||
'Wechat\\WechatReceive' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatReceive.php',
|
||||
'Wechat\\WechatScript' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatScript.php',
|
||||
'Wechat\\WechatService' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatService.php',
|
||||
'Wechat\\WechatUser' => __DIR__ . '/..' . '/zoujingli/wechat-php-sdk/Wechat/WechatUser.php',
|
||||
'think\\App' => __DIR__ . '/../..' . '/thinkphp/library/think/App.php',
|
||||
'think\\Build' => __DIR__ . '/../..' . '/thinkphp/library/think/Build.php',
|
||||
'think\\Cache' => __DIR__ . '/../..' . '/thinkphp/library/think/Cache.php',
|
||||
'think\\Collection' => __DIR__ . '/../..' . '/thinkphp/library/think/Collection.php',
|
||||
'think\\Config' => __DIR__ . '/../..' . '/thinkphp/library/think/Config.php',
|
||||
'think\\Console' => __DIR__ . '/../..' . '/thinkphp/library/think/Console.php',
|
||||
'think\\Controller' => __DIR__ . '/../..' . '/thinkphp/library/think/Controller.php',
|
||||
'think\\Cookie' => __DIR__ . '/../..' . '/thinkphp/library/think/Cookie.php',
|
||||
'think\\Db' => __DIR__ . '/../..' . '/thinkphp/library/think/Db.php',
|
||||
'think\\Debug' => __DIR__ . '/../..' . '/thinkphp/library/think/Debug.php',
|
||||
'think\\Env' => __DIR__ . '/../..' . '/thinkphp/library/think/Env.php',
|
||||
'think\\Error' => __DIR__ . '/../..' . '/thinkphp/library/think/Error.php',
|
||||
'think\\Exception' => __DIR__ . '/../..' . '/thinkphp/library/think/Exception.php',
|
||||
'think\\File' => __DIR__ . '/../..' . '/thinkphp/library/think/File.php',
|
||||
'think\\Hook' => __DIR__ . '/../..' . '/thinkphp/library/think/Hook.php',
|
||||
'think\\Lang' => __DIR__ . '/../..' . '/thinkphp/library/think/Lang.php',
|
||||
'think\\Loader' => __DIR__ . '/../..' . '/thinkphp/library/think/Loader.php',
|
||||
'think\\Log' => __DIR__ . '/../..' . '/thinkphp/library/think/Log.php',
|
||||
'think\\Model' => __DIR__ . '/../..' . '/thinkphp/library/think/Model.php',
|
||||
'think\\Paginator' => __DIR__ . '/../..' . '/thinkphp/library/think/Paginator.php',
|
||||
'think\\Process' => __DIR__ . '/../..' . '/thinkphp/library/think/Process.php',
|
||||
'think\\Queue' => __DIR__ . '/..' . '/topthink/think-queue/src/Queue.php',
|
||||
'think\\Request' => __DIR__ . '/../..' . '/thinkphp/library/think/Request.php',
|
||||
'think\\Response' => __DIR__ . '/../..' . '/thinkphp/library/think/Response.php',
|
||||
'think\\Route' => __DIR__ . '/../..' . '/thinkphp/library/think/Route.php',
|
||||
'think\\Session' => __DIR__ . '/../..' . '/thinkphp/library/think/Session.php',
|
||||
'think\\Template' => __DIR__ . '/../..' . '/thinkphp/library/think/Template.php',
|
||||
'think\\Url' => __DIR__ . '/../..' . '/thinkphp/library/think/Url.php',
|
||||
'think\\Validate' => __DIR__ . '/../..' . '/thinkphp/library/think/Validate.php',
|
||||
'think\\View' => __DIR__ . '/../..' . '/thinkphp/library/think/View.php',
|
||||
'think\\cache\\Driver' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/Driver.php',
|
||||
'think\\cache\\driver\\File' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/File.php',
|
||||
'think\\cache\\driver\\Lite' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/Lite.php',
|
||||
'think\\cache\\driver\\Memcache' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/Memcache.php',
|
||||
'think\\cache\\driver\\Memcached' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/Memcached.php',
|
||||
'think\\cache\\driver\\Redis' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/Redis.php',
|
||||
'think\\cache\\driver\\Sqlite' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/Sqlite.php',
|
||||
'think\\cache\\driver\\Wincache' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/Wincache.php',
|
||||
'think\\cache\\driver\\Xcache' => __DIR__ . '/../..' . '/thinkphp/library/think/cache/driver/Xcache.php',
|
||||
'think\\captcha\\Captcha' => __DIR__ . '/..' . '/topthink/think-captcha/src/Captcha.php',
|
||||
'think\\captcha\\CaptchaController' => __DIR__ . '/..' . '/topthink/think-captcha/src/CaptchaController.php',
|
||||
'think\\composer\\Plugin' => __DIR__ . '/..' . '/topthink/think-installer/src/Plugin.php',
|
||||
'think\\composer\\ThinkExtend' => __DIR__ . '/..' . '/topthink/think-installer/src/ThinkExtend.php',
|
||||
'think\\composer\\ThinkFramework' => __DIR__ . '/..' . '/topthink/think-installer/src/ThinkFramework.php',
|
||||
'think\\composer\\ThinkTesting' => __DIR__ . '/..' . '/topthink/think-installer/src/ThinkTesting.php',
|
||||
'think\\config\\driver\\Ini' => __DIR__ . '/../..' . '/thinkphp/library/think/config/driver/Ini.php',
|
||||
'think\\config\\driver\\Json' => __DIR__ . '/../..' . '/thinkphp/library/think/config/driver/Json.php',
|
||||
'think\\config\\driver\\Xml' => __DIR__ . '/../..' . '/thinkphp/library/think/config/driver/Xml.php',
|
||||
'think\\console\\Command' => __DIR__ . '/../..' . '/thinkphp/library/think/console/Command.php',
|
||||
'think\\console\\Input' => __DIR__ . '/../..' . '/thinkphp/library/think/console/Input.php',
|
||||
'think\\console\\Output' => __DIR__ . '/../..' . '/thinkphp/library/think/console/Output.php',
|
||||
'think\\console\\command\\Build' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/Build.php',
|
||||
'think\\console\\command\\Clear' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/Clear.php',
|
||||
'think\\console\\command\\Help' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/Help.php',
|
||||
'think\\console\\command\\Lists' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/Lists.php',
|
||||
'think\\console\\command\\Make' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/Make.php',
|
||||
'think\\console\\command\\make\\Controller' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/make/Controller.php',
|
||||
'think\\console\\command\\make\\Model' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/make/Model.php',
|
||||
'think\\console\\command\\optimize\\Autoload' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/optimize/Autoload.php',
|
||||
'think\\console\\command\\optimize\\Config' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/optimize/Config.php',
|
||||
'think\\console\\command\\optimize\\Route' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/optimize/Route.php',
|
||||
'think\\console\\command\\optimize\\Schema' => __DIR__ . '/../..' . '/thinkphp/library/think/console/command/optimize/Schema.php',
|
||||
'think\\console\\input\\Argument' => __DIR__ . '/../..' . '/thinkphp/library/think/console/input/Argument.php',
|
||||
'think\\console\\input\\Definition' => __DIR__ . '/../..' . '/thinkphp/library/think/console/input/Definition.php',
|
||||
'think\\console\\input\\Option' => __DIR__ . '/../..' . '/thinkphp/library/think/console/input/Option.php',
|
||||
'think\\console\\output\\Ask' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/Ask.php',
|
||||
'think\\console\\output\\Descriptor' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/Descriptor.php',
|
||||
'think\\console\\output\\Formatter' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/Formatter.php',
|
||||
'think\\console\\output\\Question' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/Question.php',
|
||||
'think\\console\\output\\descriptor\\Console' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/descriptor/Console.php',
|
||||
'think\\console\\output\\driver\\Buffer' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/driver/Buffer.php',
|
||||
'think\\console\\output\\driver\\Console' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/driver/Console.php',
|
||||
'think\\console\\output\\driver\\Nothing' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/driver/Nothing.php',
|
||||
'think\\console\\output\\formatter\\Stack' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/formatter/Stack.php',
|
||||
'think\\console\\output\\formatter\\Style' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/formatter/Style.php',
|
||||
'think\\console\\output\\question\\Choice' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/question/Choice.php',
|
||||
'think\\console\\output\\question\\Confirmation' => __DIR__ . '/../..' . '/thinkphp/library/think/console/output/question/Confirmation.php',
|
||||
'think\\controller\\Rest' => __DIR__ . '/../..' . '/thinkphp/library/think/controller/Rest.php',
|
||||
'think\\controller\\Yar' => __DIR__ . '/../..' . '/thinkphp/library/think/controller/Yar.php',
|
||||
'think\\db\\Builder' => __DIR__ . '/../..' . '/thinkphp/library/think/db/Builder.php',
|
||||
'think\\db\\Connection' => __DIR__ . '/../..' . '/thinkphp/library/think/db/Connection.php',
|
||||
'think\\db\\Query' => __DIR__ . '/../..' . '/thinkphp/library/think/db/Query.php',
|
||||
'think\\db\\builder\\Mysql' => __DIR__ . '/../..' . '/thinkphp/library/think/db/builder/Mysql.php',
|
||||
'think\\db\\builder\\Pgsql' => __DIR__ . '/../..' . '/thinkphp/library/think/db/builder/Pgsql.php',
|
||||
'think\\db\\builder\\Sqlite' => __DIR__ . '/../..' . '/thinkphp/library/think/db/builder/Sqlite.php',
|
||||
'think\\db\\builder\\Sqlsrv' => __DIR__ . '/../..' . '/thinkphp/library/think/db/builder/Sqlsrv.php',
|
||||
'think\\db\\connector\\Mysql' => __DIR__ . '/../..' . '/thinkphp/library/think/db/connector/Mysql.php',
|
||||
'think\\db\\connector\\Pgsql' => __DIR__ . '/../..' . '/thinkphp/library/think/db/connector/Pgsql.php',
|
||||
'think\\db\\connector\\Sqlite' => __DIR__ . '/../..' . '/thinkphp/library/think/db/connector/Sqlite.php',
|
||||
'think\\db\\connector\\Sqlsrv' => __DIR__ . '/../..' . '/thinkphp/library/think/db/connector/Sqlsrv.php',
|
||||
'think\\db\\exception\\BindParamException' => __DIR__ . '/../..' . '/thinkphp/library/think/db/exception/BindParamException.php',
|
||||
'think\\db\\exception\\DataNotFoundException' => __DIR__ . '/../..' . '/thinkphp/library/think/db/exception/DataNotFoundException.php',
|
||||
'think\\db\\exception\\ModelNotFoundException' => __DIR__ . '/../..' . '/thinkphp/library/think/db/exception/ModelNotFoundException.php',
|
||||
'think\\debug\\Console' => __DIR__ . '/../..' . '/thinkphp/library/think/debug/Console.php',
|
||||
'think\\debug\\Html' => __DIR__ . '/../..' . '/thinkphp/library/think/debug/Html.php',
|
||||
'think\\exception\\ClassNotFoundException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/ClassNotFoundException.php',
|
||||
'think\\exception\\DbException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/DbException.php',
|
||||
'think\\exception\\ErrorException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/ErrorException.php',
|
||||
'think\\exception\\Handle' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/Handle.php',
|
||||
'think\\exception\\HttpException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/HttpException.php',
|
||||
'think\\exception\\HttpResponseException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/HttpResponseException.php',
|
||||
'think\\exception\\PDOException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/PDOException.php',
|
||||
'think\\exception\\RouteNotFoundException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/RouteNotFoundException.php',
|
||||
'think\\exception\\TemplateNotFoundException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/TemplateNotFoundException.php',
|
||||
'think\\exception\\ThrowableError' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/ThrowableError.php',
|
||||
'think\\exception\\ValidateException' => __DIR__ . '/../..' . '/thinkphp/library/think/exception/ValidateException.php',
|
||||
'think\\helper\\Arr' => __DIR__ . '/..' . '/topthink/think-helper/src/Arr.php',
|
||||
'think\\helper\\Hash' => __DIR__ . '/..' . '/topthink/think-helper/src/Hash.php',
|
||||
'think\\helper\\Str' => __DIR__ . '/..' . '/topthink/think-helper/src/Str.php',
|
||||
'think\\helper\\Time' => __DIR__ . '/..' . '/topthink/think-helper/src/Time.php',
|
||||
'think\\helper\\hash\\Bcrypt' => __DIR__ . '/..' . '/topthink/think-helper/src/hash/Bcrypt.php',
|
||||
'think\\helper\\hash\\Md5' => __DIR__ . '/..' . '/topthink/think-helper/src/hash/Md5.php',
|
||||
'think\\log\\driver\\File' => __DIR__ . '/../..' . '/thinkphp/library/think/log/driver/File.php',
|
||||
'think\\log\\driver\\Socket' => __DIR__ . '/../..' . '/thinkphp/library/think/log/driver/Socket.php',
|
||||
'think\\log\\driver\\Test' => __DIR__ . '/../..' . '/thinkphp/library/think/log/driver/Test.php',
|
||||
'think\\model\\Collection' => __DIR__ . '/../..' . '/thinkphp/library/think/model/Collection.php',
|
||||
'think\\model\\Merge' => __DIR__ . '/../..' . '/thinkphp/library/think/model/Merge.php',
|
||||
'think\\model\\Pivot' => __DIR__ . '/../..' . '/thinkphp/library/think/model/Pivot.php',
|
||||
'think\\model\\Relation' => __DIR__ . '/../..' . '/thinkphp/library/think/model/Relation.php',
|
||||
'think\\model\\relation\\BelongsTo' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/BelongsTo.php',
|
||||
'think\\model\\relation\\BelongsToMany' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/BelongsToMany.php',
|
||||
'think\\model\\relation\\HasMany' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/HasMany.php',
|
||||
'think\\model\\relation\\HasManyThrough' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/HasManyThrough.php',
|
||||
'think\\model\\relation\\HasOne' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/HasOne.php',
|
||||
'think\\model\\relation\\MorphMany' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/MorphMany.php',
|
||||
'think\\model\\relation\\MorphTo' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/MorphTo.php',
|
||||
'think\\model\\relation\\OneToOne' => __DIR__ . '/../..' . '/thinkphp/library/think/model/relation/OneToOne.php',
|
||||
'think\\mongo\\Builder' => __DIR__ . '/..' . '/topthink/think-mongo/src/Builder.php',
|
||||
'think\\mongo\\Connection' => __DIR__ . '/..' . '/topthink/think-mongo/src/Connection.php',
|
||||
'think\\mongo\\Query' => __DIR__ . '/..' . '/topthink/think-mongo/src/Query.php',
|
||||
'think\\paginator\\driver\\Bootstrap' => __DIR__ . '/../..' . '/thinkphp/library/think/paginator/driver/Bootstrap.php',
|
||||
'think\\process\\Builder' => __DIR__ . '/../..' . '/thinkphp/library/think/process/Builder.php',
|
||||
'think\\process\\Utils' => __DIR__ . '/../..' . '/thinkphp/library/think/process/Utils.php',
|
||||
'think\\process\\exception\\Failed' => __DIR__ . '/../..' . '/thinkphp/library/think/process/exception/Failed.php',
|
||||
'think\\process\\exception\\Timeout' => __DIR__ . '/../..' . '/thinkphp/library/think/process/exception/Timeout.php',
|
||||
'think\\process\\pipes\\Pipes' => __DIR__ . '/../..' . '/thinkphp/library/think/process/pipes/Pipes.php',
|
||||
'think\\process\\pipes\\Unix' => __DIR__ . '/../..' . '/thinkphp/library/think/process/pipes/Unix.php',
|
||||
'think\\process\\pipes\\Windows' => __DIR__ . '/../..' . '/thinkphp/library/think/process/pipes/Windows.php',
|
||||
'think\\queue\\CallQueuedHandler' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/CallQueuedHandler.php',
|
||||
'think\\queue\\Connector' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/Connector.php',
|
||||
'think\\queue\\Job' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/Job.php',
|
||||
'think\\queue\\Listener' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/Listener.php',
|
||||
'think\\queue\\Queueable' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/Queueable.php',
|
||||
'think\\queue\\ShouldQueue' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/ShouldQueue.php',
|
||||
'think\\queue\\Worker' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/Worker.php',
|
||||
'think\\queue\\command\\Listen' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/command/Listen.php',
|
||||
'think\\queue\\command\\Restart' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/command/Restart.php',
|
||||
'think\\queue\\command\\Subscribe' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/command/Subscribe.php',
|
||||
'think\\queue\\command\\Work' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/command/Work.php',
|
||||
'think\\queue\\connector\\Database' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/connector/Database.php',
|
||||
'think\\queue\\connector\\Redis' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/connector/Redis.php',
|
||||
'think\\queue\\connector\\Sync' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/connector/Sync.php',
|
||||
'think\\queue\\connector\\Topthink' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/connector/Topthink.php',
|
||||
'think\\queue\\job\\Database' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/job/Database.php',
|
||||
'think\\queue\\job\\Redis' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/job/Redis.php',
|
||||
'think\\queue\\job\\Sync' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/job/Sync.php',
|
||||
'think\\queue\\job\\Topthink' => __DIR__ . '/..' . '/topthink/think-queue/src/queue/job/Topthink.php',
|
||||
'think\\response\\Json' => __DIR__ . '/../..' . '/thinkphp/library/think/response/Json.php',
|
||||
'think\\response\\Jsonp' => __DIR__ . '/../..' . '/thinkphp/library/think/response/Jsonp.php',
|
||||
'think\\response\\Redirect' => __DIR__ . '/../..' . '/thinkphp/library/think/response/Redirect.php',
|
||||
'think\\response\\View' => __DIR__ . '/../..' . '/thinkphp/library/think/response/View.php',
|
||||
'think\\response\\Xml' => __DIR__ . '/../..' . '/thinkphp/library/think/response/Xml.php',
|
||||
'think\\session\\driver\\Memcache' => __DIR__ . '/../..' . '/thinkphp/library/think/session/driver/Memcache.php',
|
||||
'think\\session\\driver\\Memcached' => __DIR__ . '/../..' . '/thinkphp/library/think/session/driver/Memcached.php',
|
||||
'think\\session\\driver\\Redis' => __DIR__ . '/../..' . '/thinkphp/library/think/session/driver/Redis.php',
|
||||
'think\\template\\TagLib' => __DIR__ . '/../..' . '/thinkphp/library/think/template/TagLib.php',
|
||||
'think\\template\\driver\\File' => __DIR__ . '/../..' . '/thinkphp/library/think/template/driver/File.php',
|
||||
'think\\template\\taglib\\Cx' => __DIR__ . '/../..' . '/thinkphp/library/think/template/taglib/Cx.php',
|
||||
'think\\view\\driver\\Php' => __DIR__ . '/../..' . '/thinkphp/library/think/view/driver/Php.php',
|
||||
'think\\view\\driver\\Think' => __DIR__ . '/../..' . '/thinkphp/library/think/view/driver/Think.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
|
118
vendor/composer/installed.json
vendored
118
vendor/composer/installed.json
vendored
@ -417,5 +417,123 @@
|
||||
}
|
||||
],
|
||||
"description": "The ThinkPHP5 Queue Package"
|
||||
},
|
||||
{
|
||||
"name": "symfony/options-resolver",
|
||||
"version": "v3.2.6",
|
||||
"version_normalized": "3.2.6.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/options-resolver.git",
|
||||
"reference": "56e3d0a41313f8a54326851f10690d591e62a24c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://files.phpcomposer.com/files/symfony/options-resolver/56e3d0a41313f8a54326851f10690d591e62a24c.zip",
|
||||
"reference": "56e3d0a41313f8a54326851f10690d591e62a24c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.5.9"
|
||||
},
|
||||
"time": "2017-02-21 09:12:04",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.2-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\OptionsResolver\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony OptionsResolver Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"config",
|
||||
"configuration",
|
||||
"options"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "endroid/qrcode",
|
||||
"version": "1.9.1",
|
||||
"version_normalized": "1.9.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/endroid/QrCode.git",
|
||||
"reference": "ab09b42778ad67cfe850f9c23165f8d08b756680"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://files.phpcomposer.com/files/endroid/QrCode/ab09b42778ad67cfe850f9c23165f8d08b756680.zip",
|
||||
"reference": "ab09b42778ad67cfe850f9c23165f8d08b756680",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-gd": "*",
|
||||
"php": ">=5.4",
|
||||
"symfony/options-resolver": "^2.3|^3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.0|^5.0",
|
||||
"sensio/framework-extra-bundle": "^3.0",
|
||||
"symfony/browser-kit": "^2.3|^3.0",
|
||||
"symfony/framework-bundle": "^2.3|^3.0",
|
||||
"symfony/http-kernel": "^2.3|^3.0"
|
||||
},
|
||||
"time": "2017-01-03 11:02:14",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.x-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Endroid\\QrCode\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jeroen van den Enden",
|
||||
"email": "info@endroid.nl",
|
||||
"homepage": "http://endroid.nl/"
|
||||
}
|
||||
],
|
||||
"description": "Endroid QR Code",
|
||||
"homepage": "https://github.com/endroid/QrCode",
|
||||
"keywords": [
|
||||
"bundle",
|
||||
"code",
|
||||
"endroid",
|
||||
"qr",
|
||||
"qrcode",
|
||||
"symfony"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
5
vendor/endroid/qrcode/.gitignore
vendored
Normal file
5
vendor/endroid/qrcode/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
/bin
|
||||
/composer.lock
|
||||
/composer.phar
|
||||
/phpunit.xml
|
||||
/vendor
|
21
vendor/endroid/qrcode/.travis.yml
vendored
Normal file
21
vendor/endroid/qrcode/.travis.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
language: php
|
||||
|
||||
php:
|
||||
- 5.4
|
||||
- 5.5
|
||||
- 5.6
|
||||
- 7.0
|
||||
- 7.1
|
||||
- hhvm
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
|
||||
before_install:
|
||||
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi;
|
||||
- composer self-update && composer install --no-interaction
|
||||
|
||||
script: bin/phpunit
|
||||
|
||||
notifications:
|
||||
email: info@endroid.nl
|
19
vendor/endroid/qrcode/LICENSE
vendored
Normal file
19
vendor/endroid/qrcode/LICENSE
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
Copyright (c) Jeroen van den Enden
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
132
vendor/endroid/qrcode/README.md
vendored
Normal file
132
vendor/endroid/qrcode/README.md
vendored
Normal file
@ -0,0 +1,132 @@
|
||||
QR Code
|
||||
=======
|
||||
|
||||
*By [endroid](http://endroid.nl/)*
|
||||
|
||||
[](https://packagist.org/packages/endroid/qrcode)
|
||||
[](http://travis-ci.org/endroid/QrCode)
|
||||
[](https://packagist.org/packages/endroid/qrcode)
|
||||
[](https://packagist.org/packages/endroid/qrcode)
|
||||
[](https://packagist.org/packages/endroid/qrcode)
|
||||
|
||||
This library based on QRcode Perl CGI & PHP scripts by Y. Swetake helps you generate images containing a QR code.
|
||||
|
||||
## Installation
|
||||
|
||||
Use [Composer](https://getcomposer.org/) to install the library.
|
||||
|
||||
``` bash
|
||||
$ composer require endroid/qrcode
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```php
|
||||
use Endroid\QrCode\QrCode;
|
||||
|
||||
$qrCode = new QrCode();
|
||||
$qrCode
|
||||
->setText('Life is too short to be generating QR codes')
|
||||
->setSize(300)
|
||||
->setPadding(10)
|
||||
->setErrorCorrection('high')
|
||||
->setForegroundColor(['r' => 0, 'g' => 0, 'b' => 0, 'a' => 0])
|
||||
->setBackgroundColor(['r' => 255, 'g' => 255, 'b' => 255, 'a' => 0])
|
||||
->setLabel('Scan the code')
|
||||
->setLabelFontSize(16)
|
||||
->setImageType(QrCode::IMAGE_TYPE_PNG)
|
||||
;
|
||||
|
||||
// now we can directly output the qrcode
|
||||
header('Content-Type: '.$qrCode->getContentType());
|
||||
$qrCode->render();
|
||||
|
||||
// save it to a file
|
||||
$qrCode->save('qrcode.png');
|
||||
|
||||
// or create a response object
|
||||
$response = new Response($qrCode->get(), 200, ['Content-Type' => $qrCode->getContentType()]);
|
||||
```
|
||||
|
||||

|
||||
|
||||
## Symfony integration
|
||||
|
||||
Register the Symfony bundle in the kernel.
|
||||
|
||||
```php
|
||||
// app/AppKernel.php
|
||||
|
||||
public function registerBundles()
|
||||
{
|
||||
$bundles = [
|
||||
// ...
|
||||
new Endroid\QrCode\Bundle\EndroidQrCodeBundle(),
|
||||
];
|
||||
}
|
||||
```
|
||||
|
||||
The default parameters can be overridden via the configuration.
|
||||
Alpha channel available range is [0, 127] in foreground and background colors.
|
||||
|
||||
```yaml
|
||||
endroid_qr_code:
|
||||
size: 100
|
||||
padding: 10
|
||||
extension: gif
|
||||
error_correction_level: high
|
||||
foreground_color: { r: 0, g: 0, b: 0, a: 0 }
|
||||
background_color: { r: 255, g: 255, b: 255, a: 0 }
|
||||
label: 'My label'
|
||||
label_font_size: 16
|
||||
```
|
||||
|
||||
Now you can retrieve the factory as follows.
|
||||
|
||||
```php
|
||||
$factory = $this->get('endroid.qrcode.factory');
|
||||
$factory->createQrCode();
|
||||
```
|
||||
|
||||
Add the following section to your routing to be able to handle QR code URLs.
|
||||
This step can be skipped when you only use data URIs to display your images.
|
||||
|
||||
``` yml
|
||||
EndroidQrCodeBundle:
|
||||
resource: "@EndroidQrCodeBundle/Controller/"
|
||||
type: annotation
|
||||
prefix: /qrcode
|
||||
```
|
||||
|
||||
After installation and configuration, QR codes can be generated by appending
|
||||
the QR code text to the url as mounted, followed by .png, .jpg or .gif.
|
||||
|
||||
## Twig extension
|
||||
|
||||
The bundle also provides a Twig extension for quickly generating QR code urls.
|
||||
Optional parameters are extension, size, padding and errorCorrectionLevel. When
|
||||
a parameter is omitted, the value in the bundle configuration is used.
|
||||
|
||||
``` twig
|
||||
<img src="{{ qrcode_url(message) }}" />
|
||||
<img src="{{ qrcode_url(message, { extension: 'png' }) }}" />
|
||||
<img src="{{ qrcode_url(message, { size: 150 }) }}" />
|
||||
```
|
||||
|
||||
You can also use the data URI helper to embed the QR code within your HTML
|
||||
instead of requiring a separate HTTP request to load your image.
|
||||
|
||||
``` twig
|
||||
<img src="{{ qrcode_data_uri(message, { size: 200, padding: 10 }) }}" />
|
||||
```
|
||||
|
||||
## Versioning
|
||||
|
||||
Version numbers follow the MAJOR.MINOR.PATCH scheme. Backwards compatibility
|
||||
breaking changes will be kept to a minimum but be aware that these can occur.
|
||||
Lock your dependencies for production and test your code when upgrading.
|
||||
|
||||
## License
|
||||
|
||||
This bundle is under the MIT license. For the full copyright and license
|
||||
information please view the LICENSE file that was distributed with this source code.
|
BIN
vendor/endroid/qrcode/assets/data/qrv10_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv10_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv10_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv10_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv10_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv10_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv10_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv10_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv11_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv11_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv11_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv11_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv11_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv11_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv11_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv11_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv12_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv12_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv12_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv12_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv12_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv12_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv12_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv12_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv13_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv13_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv13_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv13_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv13_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv13_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv13_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv13_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv14_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv14_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv14_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv14_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv14_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv14_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv14_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv14_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv15_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv15_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv15_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv15_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv15_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv15_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv15_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv15_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv16_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv16_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv16_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv16_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv16_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv16_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv16_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv16_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv17_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv17_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv17_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv17_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv17_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv17_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv17_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv17_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv18_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv18_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv18_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv18_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv18_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv18_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv18_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv18_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv19_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv19_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv19_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv19_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv19_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv19_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv19_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv19_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv1_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv1_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv1_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv1_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv1_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv1_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv1_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv1_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv20_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv20_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv20_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv20_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv20_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv20_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv20_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv20_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv21_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv21_0.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv21_1.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv21_1.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv21_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv21_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv21_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv21_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv22_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv22_0.dat
vendored
Normal file
Binary file not shown.
209
vendor/endroid/qrcode/assets/data/qrv22_1.dat
vendored
Normal file
209
vendor/endroid/qrcode/assets/data/qrv22_1.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
vendor/endroid/qrcode/assets/data/qrv22_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv22_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv22_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv22_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv23_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv23_0.dat
vendored
Normal file
Binary file not shown.
217
vendor/endroid/qrcode/assets/data/qrv23_1.dat
vendored
Normal file
217
vendor/endroid/qrcode/assets/data/qrv23_1.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
vendor/endroid/qrcode/assets/data/qrv23_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv23_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv23_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv23_3.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv24_0.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv24_0.dat
vendored
Normal file
Binary file not shown.
225
vendor/endroid/qrcode/assets/data/qrv24_1.dat
vendored
Normal file
225
vendor/endroid/qrcode/assets/data/qrv24_1.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
vendor/endroid/qrcode/assets/data/qrv24_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv24_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv24_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv24_3.dat
vendored
Normal file
Binary file not shown.
233
vendor/endroid/qrcode/assets/data/qrv25_0.dat
vendored
Normal file
233
vendor/endroid/qrcode/assets/data/qrv25_0.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
233
vendor/endroid/qrcode/assets/data/qrv25_1.dat
vendored
Normal file
233
vendor/endroid/qrcode/assets/data/qrv25_1.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
vendor/endroid/qrcode/assets/data/qrv25_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv25_2.dat
vendored
Normal file
Binary file not shown.
BIN
vendor/endroid/qrcode/assets/data/qrv25_3.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv25_3.dat
vendored
Normal file
Binary file not shown.
241
vendor/endroid/qrcode/assets/data/qrv26_0.dat
vendored
Normal file
241
vendor/endroid/qrcode/assets/data/qrv26_0.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
241
vendor/endroid/qrcode/assets/data/qrv26_1.dat
vendored
Normal file
241
vendor/endroid/qrcode/assets/data/qrv26_1.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
vendor/endroid/qrcode/assets/data/qrv26_2.dat
vendored
Normal file
BIN
vendor/endroid/qrcode/assets/data/qrv26_2.dat
vendored
Normal file
Binary file not shown.
241
vendor/endroid/qrcode/assets/data/qrv26_3.dat
vendored
Normal file
241
vendor/endroid/qrcode/assets/data/qrv26_3.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
249
vendor/endroid/qrcode/assets/data/qrv27_0.dat
vendored
Normal file
249
vendor/endroid/qrcode/assets/data/qrv27_0.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
249
vendor/endroid/qrcode/assets/data/qrv27_1.dat
vendored
Normal file
249
vendor/endroid/qrcode/assets/data/qrv27_1.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
249
vendor/endroid/qrcode/assets/data/qrv27_2.dat
vendored
Normal file
249
vendor/endroid/qrcode/assets/data/qrv27_2.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
249
vendor/endroid/qrcode/assets/data/qrv27_3.dat
vendored
Normal file
249
vendor/endroid/qrcode/assets/data/qrv27_3.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
257
vendor/endroid/qrcode/assets/data/qrv28_0.dat
vendored
Normal file
257
vendor/endroid/qrcode/assets/data/qrv28_0.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
257
vendor/endroid/qrcode/assets/data/qrv28_1.dat
vendored
Normal file
257
vendor/endroid/qrcode/assets/data/qrv28_1.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
257
vendor/endroid/qrcode/assets/data/qrv28_2.dat
vendored
Normal file
257
vendor/endroid/qrcode/assets/data/qrv28_2.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
257
vendor/endroid/qrcode/assets/data/qrv28_3.dat
vendored
Normal file
257
vendor/endroid/qrcode/assets/data/qrv28_3.dat
vendored
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user