【例子介绍】基于ThinkPHP6.0和layui的快速开发的后台管理系统源码
【相关图片】
【源码结构】
.
├── hotel-master
│ ├── LICENSE
│ ├── README.en.md
│ ├── README.md
│ ├── app
│ │ ├── BaseController.php
│ │ ├── ExceptionHandle.php
│ │ ├── Request.php
│ │ ├── admin
│ │ │ ├── common.php
│ │ │ ├── config
│ │ │ │ ├── admin.php
│ │ │ │ ├── app.php
│ │ │ │ ├── console.php
│ │ │ │ └── route.php
│ │ │ ├── controller
│ │ │ │ ├── Ajax.php
│ │ │ │ ├── Index.php
│ │ │ │ ├── Login.php
│ │ │ │ ├── Opinions.php
│ │ │ │ ├── banner
│ │ │ │ │ ├── Item.php
│ │ │ │ │ └── Type.php
│ │ │ │ ├── city
│ │ │ │ │ ├── Admin.php
│ │ │ │ │ ├── PartnerInfo.php
│ │ │ │ │ └── PartnerRequest.php
│ │ │ │ ├── hotel
│ │ │ │ │ ├── Channel.php
│ │ │ │ │ ├── Info.php
│ │ │ │ │ ├── MembershipLog.php
│ │ │ │ │ └── Request.php
│ │ │ │ ├── member
│ │ │ │ │ └── User.php
│ │ │ │ ├── shop
│ │ │ │ │ ├── BannerItem.php
│ │ │ │ │ ├── Category.php
│ │ │ │ │ ├── Goods.php
│ │ │ │ │ └── site.php
│ │ │ │ ├── supplier
│ │ │ │ │ ├── Admin.php
│ │ │ │ │ ├── Category.php
│ │ │ │ │ ├── Goods.php
│ │ │ │ │ ├── ShopInfo.php
│ │ │ │ │ ├── ShopRequest.php
│ │ │ │ │ └── ShopType.php
│ │ │ │ └── system
│ │ │ │ ├── Admin.php
│ │ │ │ ├── Auth.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Log.php
│ │ │ │ ├── Menu.php
│ │ │ │ ├── Node.php
│ │ │ │ ├── Quick.php
│ │ │ │ └── Uploadfile.php
│ │ │ ├── event.php
│ │ │ ├── middleware
│ │ │ │ ├── CheckAdmin.php
│ │ │ │ ├── CsrfMiddleware.php
│ │ │ │ ├── SystemLog.php
│ │ │ │ └── ViewInit.php
│ │ │ ├── middleware.php
│ │ │ ├── model
│ │ │ │ ├── BannerItem.php
│ │ │ │ ├── BannerType.php
│ │ │ │ ├── CityPartnerInfo.php
│ │ │ │ ├── CityPartnerRequest.php
│ │ │ │ ├── HotelChannel.php
│ │ │ │ ├── HotelInfo.php
│ │ │ │ ├── HotelMembershipLog.php
│ │ │ │ ├── HotelRequest.php
│ │ │ │ ├── MemberUser.php
│ │ │ │ ├── Opinions.php
│ │ │ │ ├── ShopCategory.php
│ │ │ │ ├── ShopGoods.php
│ │ │ │ ├── ShopGoodsSku.php
│ │ │ │ ├── SupplierAdmin.php
│ │ │ │ ├── SupplierShopInfo.php
│ │ │ │ ├── SupplierShopRequest.php
│ │ │ │ ├── SupplierShopType.php
│ │ │ │ ├── SystemAdmin.php
│ │ │ │ ├── SystemAuth.php
│ │ │ │ ├── SystemAuthNode.php
│ │ │ │ ├── SystemConfig.php
│ │ │ │ ├── SystemLog.php
│ │ │ │ ├── SystemMenu.php
│ │ │ │ ├── SystemNode.php
│ │ │ │ ├── SystemQuick.php
│ │ │ │ └── SystemUploadfile.php
│ │ │ ├── service
│ │ │ │ ├── ConfigService.php
│ │ │ │ ├── NodeService.php
│ │ │ │ ├── SystemLogService.php
│ │ │ │ └── TriggerService.php
│ │ │ ├── traits
│ │ │ │ └── Curd.php
│ │ │ └── view
│ │ │ ├── banner
│ │ │ │ ├── item
│ │ │ │ └── type
│ │ │ ├── city
│ │ │ │ ├── admin
│ │ │ │ ├── partner_info
│ │ │ │ └── partner_request
│ │ │ ├── hotel
│ │ │ │ ├── channel
│ │ │ │ ├── info
│ │ │ │ ├── membership_log
│ │ │ │ └── request
│ │ │ ├── index
│ │ │ │ ├── edit_admin.html
│ │ │ │ ├── edit_password.html
│ │ │ │ ├── index.html
│ │ │ │ └── welcome.html
│ │ │ ├── layout
│ │ │ │ └── default.html
│ │ │ ├── login
│ │ │ │ └── index.html
│ │ │ ├── member
│ │ │ │ └── user
│ │ │ ├── opinions
│ │ │ │ ├── index.html
│ │ │ │ └── show_info.html
│ │ │ ├── shop
│ │ │ │ ├── banner_item
│ │ │ │ ├── category
│ │ │ │ ├── goods
│ │ │ │ └── site
│ │ │ ├── supplier
│ │ │ │ ├── admin
│ │ │ │ ├── category
│ │ │ │ ├── goods
│ │ │ │ ├── shop_info
│ │ │ │ ├── shop_request
│ │ │ │ └── shop_type
│ │ │ └── system
│ │ │ ├── admin
│ │ │ ├── auth
│ │ │ ├── config
│ │ │ ├── log
│ │ │ ├── menu
│ │ │ ├── node
│ │ │ ├── quick
│ │ │ └── uploadfile
│ │ ├── admin_shop
│ │ │ ├── common.php
│ │ │ ├── config
│ │ │ │ ├── admin.php
│ │ │ │ ├── app.php
│ │ │ │ ├── console.php
│ │ │ │ └── route.php
│ │ │ ├── controller
│ │ │ │ ├── Ajax.php
│ │ │ │ ├── Index.php
│ │ │ │ ├── Login.php
│ │ │ │ ├── shop
│ │ │ │ │ ├── BannerItem.php
│ │ │ │ │ ├── Category.php
│ │ │ │ │ ├── Goods.php
│ │ │ │ │ └── Site.php
│ │ │ │ └── system
│ │ │ │ ├── Admin.php
│ │ │ │ ├── Auth.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Log.php
│ │ │ │ ├── Menu.php
│ │ │ │ ├── Node.php
│ │ │ │ ├── Quick.php
│ │ │ │ └── Uploadfile.php
│ │ │ ├── event.php
│ │ │ ├── middleware
│ │ │ │ ├── CheckAdmin.php
│ │ │ │ ├── CsrfMiddleware.php
│ │ │ │ ├── SystemLog.php
│ │ │ │ └── ViewInit.php
│ │ │ ├── middleware.php
│ │ │ ├── model
│ │ │ │ ├── BannerItem.php
│ │ │ │ ├── BannerType.php
│ │ │ │ ├── ShopCategory.php
│ │ │ │ ├── ShopGoods.php
│ │ │ │ ├── ShopGoodsSku.php
│ │ │ │ ├── SupplierShopInfo.php
│ │ │ │ ├── SupplierShopType.php
│ │ │ │ ├── SystemAdmin.php
│ │ │ │ ├── SystemAuth.php
│ │ │ │ ├── SystemAuthNode.php
│ │ │ │ ├── SystemConfig.php
│ │ │ │ ├── SystemLog.php
│ │ │ │ ├── SystemMenu.php
│ │ │ │ ├── SystemNode.php
│ │ │ │ ├── SystemQuick.php
│ │ │ │ └── SystemUploadfile.php
│ │ │ ├── service
│ │ │ │ ├── ConfigService.php
│ │ │ │ ├── NodeService.php
│ │ │ │ ├── SystemLogService.php
│ │ │ │ └── TriggerService.php
│ │ │ └── view
│ │ │ ├── index
│ │ │ │ ├── edit_admin.html
│ │ │ │ ├── edit_password.html
│ │ │ │ ├── index.html
│ │ │ │ └── welcome.html
│ │ │ ├── layout
│ │ │ │ └── default.html
│ │ │ ├── login
│ │ │ │ └── index.html
│ │ │ ├── shop
│ │ │ │ ├── banner_item
│ │ │ │ ├── category
│ │ │ │ ├── goods
│ │ │ │ └── site
│ │ │ └── system
│ │ │ ├── admin
│ │ │ ├── auth
│ │ │ ├── config
│ │ │ ├── log
│ │ │ ├── menu
│ │ │ ├── node
│ │ │ ├── quick
│ │ │ └── uploadfile
│ │ ├── common
│ │ │ ├── command
│ │ │ │ ├── Curd.php
│ │ │ │ ├── Node.php
│ │ │ │ └── OssStatic.php
│ │ │ ├── constants
│ │ │ │ ├── AdminConstant.php
│ │ │ │ └── MenuConstant.php
│ │ │ ├── controller
│ │ │ │ ├── AdminController.php
│ │ │ │ └── AdminShopController.php
│ │ │ ├── model
│ │ │ │ ├── Area.php
│ │ │ │ └── TimeModel.php
│ │ │ ├── service
│ │ │ │ ├── AuthService.php
│ │ │ │ ├── MenuService.php
│ │ │ │ ├── RequestResultErrorCode.php
│ │ │ │ └── UserToken.php
│ │ │ ├── tpl
│ │ │ │ ├── dispatch_jump.tpl
│ │ │ │ └── think_exception.tpl
│ │ │ └── traits
│ │ │ └── JumpTrait.php
│ │ ├── common.php
│ │ ├── event.php
│ │ ├── exception
│ │ │ ├── ApiRequestException.php
│ │ │ ├── ApiResouseException.php
│ │ │ ├── AuthorityException.php
│ │ │ ├── BaseException.php
│ │ │ ├── DatabaseTableException.php
│ │ │ ├── ExceptionCodeNote.txt
│ │ │ ├── FileUploadiException.php
│ │ │ ├── HotelMoveException.php
│ │ │ ├── ParameterException.php
│ │ │ ├── TokenException.php
│ │ │ ├── UserLoginRefuseException.php
│ │ │ └── UserMissException.php
│ │ ├── index
│ │ │ ├── common.php
│ │ │ ├── controller
│ │ │ │ ├── Ajax.php
│ │ │ │ ├── Apply.php
│ │ │ │ ├── Area.php
│ │ │ │ ├── Banner.php
│ │ │ │ ├── Cart.php
│ │ │ │ ├── Hotel.php
│ │ │ │ ├── Index.php
│ │ │ │ ├── Login.php
│ │ │ │ ├── Shop.php
│ │ │ │ └── User.php
│ │ │ ├── event.php
│ │ │ ├── middleware.php
│ │ │ ├── model
│ │ │ │ ├── Area.php
│ │ │ │ ├── Banner.php
│ │ │ │ ├── BannerItem.php
│ │ │ │ ├── BannerType.php
│ │ │ │ ├── CartItem.php
│ │ │ │ ├── CityPartnerRequest.php
│ │ │ │ ├── ConfSettings.php
│ │ │ │ ├── HotelChamber.php
│ │ │ │ ├── HotelChannel.php
│ │ │ │ ├── HotelInfo.php
│ │ │ │ ├── HotelMove.php
│ │ │ │ ├── HotelMoveLog.php
│ │ │ │ ├── HotelRequest.php
│ │ │ │ ├── MemberUser.php
│ │ │ │ ├── Order.php
│ │ │ │ ├── OrderDetail.php
│ │ │ │ ├── Rebate.php
│ │ │ │ ├── ShopCategory.php
│ │ │ │ ├── ShopGoods.php
│ │ │ │ ├── ShopGoodsSku.php
│ │ │ │ ├── SupplierShopInfo.php
│ │ │ │ ├── SupplierShopRequest.php
│ │ │ │ ├── SupplierShopType.php
│ │ │ │ ├── SystemConfig.php
│ │ │ │ └── UserAddress.php
│ │ │ └── provider.php
│ │ ├── middleware.php
│ │ ├── provider.php
│ │ ├── service.php
│ │ └── validate
│ │ ├── AddressValidate.php
│ │ ├── AdminDatabaseTableValidate.php
│ │ ├── AdminGroupValidate.php
│ │ ├── AdminUserValidate.php
│ │ ├── BankCardValidate.php
│ │ ├── BaseValidate.php
│ │ ├── CarValidate.php
│ │ ├── CartItemValidate.php
│ │ ├── CashValidate.php
│ │ ├── CityPartnerRequestValidate.php
│ │ ├── DatabaseTableFieldValidate.php
│ │ ├── DemoValidate.php
│ │ ├── HotelMoveAddValidate.php
│ │ ├── HotelRequestValidate.php
│ │ ├── IdMustBePositiveInteger.php
│ │ ├── JmRequestValidate.php
│ │ ├── OrderReviewValidate.php
│ │ ├── OrderStationPayValidate.php
│ │ ├── PageValidate.php
│ │ ├── PhoneCaptchaValidate.php
│ │ ├── PositionValidate.php
│ │ ├── RzRequestValidate.php
│ │ ├── ServerShopValidate.php
│ │ ├── StationValidate.php
│ │ ├── SupplierShopRequestValidate.php
│ │ ├── TokenCheckValidate.php
│ │ ├── UsernamePwdValidate.php
│ │ ├── Wechat2Validate.php
│ │ ├── WechatValidate.php
│ │ └── WxCodeValidate.php
│ ├── composer.json
│ ├── composer.lock
│ ├── config
│ │ ├── addons.php
│ │ ├── app.php
│ │ ├── cache.php
│ │ ├── captcha.php
│ │ ├── console.php
│ │ ├── cookie.php
│ │ ├── database.php
│ │ ├── filesystem.php
│ │ ├── install
│ │ │ ├── lock
│ │ │ │ └── install.lock
│ │ │ └── sql
│ │ │ └── install.sql
│ │ ├── lang.php
│ │ ├── log.php
│ │ ├── middleware.php
│ │ ├── route.php
│ │ ├── session.php
│ │ ├── trace.php
│ │ ├── view.php
│ │ └── wechat.php
│ ├── public
│ │ ├── index.php
│ │ ├── install.php
│ │ ├── nginx.htaccess
│ │ ├── robots.txt
│ │ ├── router.php
│ │ ├── static
│ │ │ ├── addons
│ │ │ │ └── alisms
│ │ │ │ └── js
│ │ │ ├── admin
│ │ │ │ ├── css
│ │ │ │ │ ├── iconfont.css
│ │ │ │ │ ├── login.css
│ │ │ │ │ ├── public.css
│ │ │ │ │ └── welcome.css
│ │ │ │ ├── fonts
│ │ │ │ │ └── iconfont
│ │ │ │ ├── images
│ │ │ │ │ ├── captcha.jpg
│ │ │ │ │ ├── head.jpg
│ │ │ │ │ ├── icon-login.png
│ │ │ │ │ ├── loginbg.png
│ │ │ │ │ └── upload-icons
│ │ │ │ └── js
│ │ │ │ ├── banner
│ │ │ │ ├── city
│ │ │ │ ├── hotel
│ │ │ │ ├── index.js
│ │ │ │ ├── login.js
│ │ │ │ ├── member
│ │ │ │ ├── opinions.js
│ │ │ │ ├── shop
│ │ │ │ ├── supplier
│ │ │ │ └── system
│ │ │ ├── admin_shop
│ │ │ │ ├── css
│ │ │ │ │ ├── iconfont.css
│ │ │ │ │ ├── login.css
│ │ │ │ │ ├── public.css
│ │ │ │ │ └── welcome.css
│ │ │ │ ├── fonts
│ │ │ │ │ └── iconfont
│ │ │ │ ├── images
│ │ │ │ │ ├── captcha.jpg
│ │ │ │ │ ├── head.jpg
│ │ │ │ │ ├── icon-login.png
│ │ │ │ │ ├── loginbg.png
│ │ │ │ │ └── upload-icons
│ │ │ │ └── js
│ │ │ │ ├── index.js
│ │ │ │ ├── login.js
│ │ │ │ ├── shop
│ │ │ │ └── system
│ │ │ ├── common
│ │ │ │ ├── css
│ │ │ │ │ ├── insatll.css
│ │ │ │ │ └── welcome.css
│ │ │ │ └── images
│ │ │ │ ├── error.svg
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── github.png
│ │ │ │ ├── icon-download-green.png
│ │ │ │ ├── icon-gitee.png
│ │ │ │ ├── icon-github-big.png
│ │ │ │ ├── icon-play.png
│ │ │ │ ├── info.svg
│ │ │ │ ├── logo-1.png
│ │ │ │ ├── logo-2.png
│ │ │ │ ├── logo-3.png
│ │ │ │ └── success.svg
│ │ │ ├── config-admin.js
│ │ │ ├── favicon.ico
│ │ │ └── plugs
│ │ │ ├── ckeditor4
│ │ │ │ ├── adapters
│ │ │ │ ├── build-config.js
│ │ │ │ ├── ckeditor.js
│ │ │ │ ├── config.js
│ │ │ │ ├── contents.css
│ │ │ │ ├── lang
│ │ │ │ ├── plugins
│ │ │ │ ├── skins
│ │ │ │ ├── styles.js
│ │ │ │ └── vendor
│ │ │ ├── easy-admin
│ │ │ │ └── easy-admin.js
│ │ │ ├── echarts
│ │ │ │ ├── echarts-theme.js
│ │ │ │ └── echarts.min.js
│ │ │ ├── font-awesome-4.7.0
│ │ │ │ ├── HELP-US-OUT.txt
│ │ │ │ ├── css
│ │ │ │ ├── fonts
│ │ │ │ ├── less
│ │ │ │ └── scss
│ │ │ ├── jq-module
│ │ │ │ └── jquery.particleground.min.js
│ │ │ ├── jquery-3.4.1
│ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ └── jquery-3.4.1.min.js
│ │ │ ├── lay-module
│ │ │ │ ├── autocomplete
│ │ │ │ ├── echarts
│ │ │ │ ├── iconPicker
│ │ │ │ ├── layuimini
│ │ │ │ ├── step-lay
│ │ │ │ ├── tableSelect
│ │ │ │ └── treetable-lay
│ │ │ ├── layui-v2.5.6
│ │ │ │ ├── css
│ │ │ │ ├── font
│ │ │ │ ├── images
│ │ │ │ ├── lay
│ │ │ │ ├── layui.all.js
│ │ │ │ └── layui.js
│ │ │ ├── meuiBdmap
│ │ │ │ ├── assets
│ │ │ │ ├── docs
│ │ │ │ ├── index.html
│ │ │ │ ├── src
│ │ │ │ └── test
│ │ │ ├── require-2.3.6
│ │ │ │ └── require.js
│ │ │ └── vue-2.6.10
│ │ │ ├── vue.js
│ │ │ └── vue.min.js
│ │ └── upload
│ │ ├── 20220222
│ │ │ ├── 0bd4a3124b6db2675225d13c5d485bb9.jpg
│ │ │ ├── 64579c256ced42d368a36d4a7919829c.ico
│ │ │ ├── a67cdf98bbba4471e44a2227d8574f9b.ico
│ │ │ ├── c39105c13c98716459cc19b515f45117.jpg
│ │ │ └── eb4f6d287318ef3424839b648a581427.jpg
│ │ ├── 20220223
│ │ │ ├── 3245db2a7547dac0240e92d08ed40453.png
│ │ │ ├── 5936043bda3b4fe05727f741f13dc0f9.png
│ │ │ ├── 6720e93799209d845ee7f4f9bc401922.png
│ │ │ ├── 6fe0053f2a666b5244ae5df414cd0067.png
│ │ │ └── 8c229b0932580109e96f42a1c5adaa6c.jpg
│ │ ├── 20220224
│ │ │ └── 0ea7d2e6e335e919b83b49e431d351cc.png
│ │ ├── 20220225
│ │ │ ├── 5dac9d6dae8f3302ab57a40b7902dd74.png
│ │ │ ├── b799e843a91a9ea35404b29d719faf60.png
│ │ │ ├── c4d42001b8a0e87ebeee678a206344e3.png
│ │ │ ├── ca79d7c6b9209a56784e19d0860b5d45.png
│ │ │ ├── cb8bbbca85b640617d9052d129bbf0d1.png
│ │ │ ├── e46d6b213fe79bba38b486d90d30f506.png
│ │ │ └── e53bbb8571124b2f91078a62e8754ffd.png
│ │ ├── 20220226
│ │ │ ├── 6566d024452bf3c9359428784269f109.jpg
│ │ │ └── 91c57286905c5544c6223d3859346db8.jpg
│ │ ├── 20220228
│ │ │ ├── 0df01e68b00f3b2b4f4797da56a5c65d.png
│ │ │ ├── 1d4f822a433de889be73ebc96869746f.png
│ │ │ ├── 29c3c423db9727df6bd126dda37234ae.png
│ │ │ ├── 4097b459f8cdd1ae1439a80a7460a3f0.png
│ │ │ ├── 5abba47d2706811508fd63fa42efaf92.png
│ │ │ ├── 6bc6354923acd0eddf2ffb5a3ed35738.png
│ │ │ ├── 7a5842516a535cfd741ff028d887ffcd.png
│ │ │ ├── 84da7fef88c62e69840e0aa071da099e.png
│ │ │ ├── d390d6070797e84e8050d3bb7e18df57.png
│ │ │ ├── ec7e382dff3bd2a9028fc336591e13d4.png
│ │ │ ├── f38c7727a80af53518c7f9f2159ef911.png
│ │ │ ├── f40e4f387dfbd23f4a8c571da01a132b.png
│ │ │ ├── f952522a8d24a6971afec59e9f4a845e.png
│ │ │ └── fc3fbf66bd935c04ceae14f6d639a7e2.png
│ │ ├── 20220301
│ │ │ ├── 06b34c90fd6bb9be8e9a479b9f59b6d4.png
│ │ │ ├── 087b06fb301f5cf5d72d41780151582b.png
│ │ │ ├── 0a2f1aaa899c7220e220db688916c763.png
│ │ │ ├── 0fbf12aac53b79e168d6253860fe6b56.png
│ │ │ ├── 2d5332b21faff0ad0b3926880a0b6dc3.png
│ │ │ ├── 373dd7fcfd4b8deca3cea2497b8fc685.png
│ │ │ ├── 3b98a2c769e159161738f3ab719cd94b.png
│ │ │ ├── 40649c710e456721579ca517e978730d.png
│ │ │ ├── 437445eb1fbb821138929f8523042ec7.png
│ │ │ ├── 66d68363cf9549b1104048dffc1b03bc.png
│ │ │ ├── 8c63bc424f3163fb0f696189f0b91ecf.png
│ │ │ ├── b7399a56abfed3369e3a225a56fa024b.png
│ │ │ └── e3db10c5e2a11388f29b78ff25cf111e.png
│ │ ├── 20220302
│ │ │ ├── 74cf3be52f3c1eb68a62bc59917682d1.png
│ │ │ └── 799af4893f1b169a069b9f34437ee911.png
│ │ └── sys
│ │ ├── category_def.png
│ │ ├── upload.png
│ │ ├── upload_bg_f.png
│ │ └── user_def.png
│ ├── route
│ │ ├── app.php
│ │ └── welcome.php
│ ├── runtime
│ ├── think
│ ├── vendor
│ │ ├── adbario
│ │ │ └── php-dot-notation
│ │ │ ├── LICENSE.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── Dot.php
│ │ │ └── helpers.php
│ │ ├── alibabacloud
│ │ │ └── client
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE.md
│ │ │ ├── NOTICE.md
│ │ │ ├── README-zh-CN.md
│ │ │ ├── README.md
│ │ │ ├── UPGRADING.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── Accept.php
│ │ │ ├── AlibabaCloud.php
│ │ │ ├── Clients
│ │ │ ├── Config
│ │ │ ├── Credentials
│ │ │ ├── DefaultAcsClient.php
│ │ │ ├── Encode.php
│ │ │ ├── Exception
│ │ │ ├── Filter
│ │ │ ├── Functions.php
│ │ │ ├── Log
│ │ │ ├── Profile
│ │ │ ├── Regions
│ │ │ ├── Release.php
│ │ │ ├── Request
│ │ │ ├── Resolver
│ │ │ ├── Result
│ │ │ ├── SDK.php
│ │ │ ├── Signature
│ │ │ ├── Support
│ │ │ └── Traits
│ │ ├── aliyuncs
│ │ │ └── oss-sdk-php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README-CN.md
│ │ │ ├── README.md
│ │ │ ├── autoload.php
│ │ │ ├── build-phar.sh
│ │ │ ├── composer.json
│ │ │ ├── example.jpg
│ │ │ ├── index.php
│ │ │ ├── phpunit.xml
│ │ │ ├── samples
│ │ │ │ ├── Bucket.php
│ │ │ │ ├── BucketCors.php
│ │ │ │ ├── BucketLifecycle.php
│ │ │ │ ├── BucketLogging.php
│ │ │ │ ├── BucketReferer.php
│ │ │ │ ├── BucketWebsite.php
│ │ │ │ ├── Callback.php
│ │ │ │ ├── Common.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── LiveChannel.php
│ │ │ │ ├── MultipartUpload.php
│ │ │ │ ├── Object.php
│ │ │ │ ├── RunAll.php
│ │ │ │ └── Signature.php
│ │ │ ├── src
│ │ │ │ └── OSS
│ │ │ └── tests
│ │ │ └── OSS
│ │ ├── autoload.php
│ │ ├── bin
│ │ │ ├── jp.php
│ │ │ ├── jp.php.bat
│ │ │ ├── var-dump-server
│ │ │ └── var-dump-server.bat
│ │ ├── clagiordano
│ │ │ └── weblibs-configmanager
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── composer.lock
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ └── ConfigManager.php
│ │ │ ├── tests
│ │ │ │ └── ConfigManagerTest.php
│ │ │ └── testsdata
│ │ │ └── sample_config_data.php
│ │ ├── composer
│ │ │ ├── ClassLoader.php
│ │ │ ├── InstalledVersions.php
│ │ │ ├── LICENSE
│ │ │ ├── autoload_classmap.php
│ │ │ ├── autoload_files.php
│ │ │ ├── autoload_namespaces.php
│ │ │ ├── autoload_psr4.php
│ │ │ ├── autoload_real.php
│ │ │ ├── autoload_static.php
│ │ │ ├── installed.json
│ │ │ ├── installed.php
│ │ │ └── platform_check.php
│ │ ├── danielstjules
│ │ │ └── stringy
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.txt
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── Create.php
│ │ │ ├── StaticStringy.php
│ │ │ └── Stringy.php
│ │ ├── doctrine
│ │ │ ├── annotations
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── docs
│ │ │ │ │ └── en
│ │ │ │ └── lib
│ │ │ │ └── Doctrine
│ │ │ └── lexer
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── lib
│ │ │ └── Doctrine
│ │ ├── eaglewu
│ │ │ └── swoole-ide-helper
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ ├── imgs
│ │ │ │ ├── img-01.png
│ │ │ │ ├── img-02.png
│ │ │ │ ├── img-03.png
│ │ │ │ └── img-04.png
│ │ │ └── src
│ │ │ ├── Async.php
│ │ │ ├── Atomic.php
│ │ │ ├── Buffer.php
│ │ │ ├── Channel.php
│ │ │ ├── Client.php
│ │ │ ├── Connection
│ │ │ ├── Constants.php
│ │ │ ├── Coroutine
│ │ │ ├── Coroutine.php
│ │ │ ├── Event.php
│ │ │ ├── Functionals.php
│ │ │ ├── Http
│ │ │ ├── Http2
│ │ │ ├── Lock.php
│ │ │ ├── MySQL.php
│ │ │ ├── Mysql
│ │ │ ├── Port.php
│ │ │ ├── Process
│ │ │ ├── Process.php
│ │ │ ├── Redis
│ │ │ ├── Redis.php
│ │ │ ├── Runtime.php
│ │ │ ├── Serialize.php
│ │ │ ├── Server
│ │ │ ├── Server.php
│ │ │ ├── Table.php
│ │ │ ├── Timer.php
│ │ │ └── Websocket
│ │ ├── guzzlehttp
│ │ │ ├── command
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── Command.php
│ │ │ │ ├── CommandInterface.php
│ │ │ │ ├── Exception
│ │ │ │ ├── HasDataTrait.php
│ │ │ │ ├── Result.php
│ │ │ │ ├── ResultInterface.php
│ │ │ │ ├── ServiceClient.php
│ │ │ │ ├── ServiceClientInterface.php
│ │ │ │ └── ToArrayInterface.php
│ │ │ ├── guzzle
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── Dockerfile
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── UPGRADING.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── phpstan.neon.dist
│ │ │ │ └── src
│ │ │ │ ├── Client.php
│ │ │ │ ├── ClientInterface.php
│ │ │ │ ├── Cookie
│ │ │ │ ├── Exception
│ │ │ │ ├── Handler
│ │ │ │ ├── HandlerStack.php
│ │ │ │ ├── MessageFormatter.php
│ │ │ │ ├── Middleware.php
│ │ │ │ ├── Pool.php
│ │ │ │ ├── PrepareBodyMiddleware.php
│ │ │ │ ├── RedirectMiddleware.php
│ │ │ │ ├── RequestOptions.php
│ │ │ │ ├── RetryMiddleware.php
│ │ │ │ ├── TransferStats.php
│ │ │ │ ├── UriTemplate.php
│ │ │ │ ├── functions.php
│ │ │ │ └── functions_include.php
│ │ │ ├── guzzle-services
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── src
│ │ │ │ │ ├── Description.php
│ │ │ │ │ ├── DescriptionInterface.php
│ │ │ │ │ ├── Deserializer.php
│ │ │ │ │ ├── GuzzleClient.php
│ │ │ │ │ ├── Handler
│ │ │ │ │ ├── Operation.php
│ │ │ │ │ ├── Parameter.php
│ │ │ │ │ ├── QuerySerializer
│ │ │ │ │ ├── RequestLocation
│ │ │ │ │ ├── ResponseLocation
│ │ │ │ │ ├── SchemaFormatter.php
│ │ │ │ │ ├── SchemaValidator.php
│ │ │ │ │ └── Serializer.php
│ │ │ │ └── tests
│ │ │ │ ├── Asset
│ │ │ │ ├── DescriptionTest.php
│ │ │ │ ├── DeserializerTest.php
│ │ │ │ ├── GuzzleClientTest.php
│ │ │ │ ├── Handler
│ │ │ │ ├── OperationTest.php
│ │ │ │ ├── ParameterTest.php
│ │ │ │ ├── QuerySerializer
│ │ │ │ ├── RequestLocation
│ │ │ │ ├── ResponseLocation
│ │ │ │ ├── SchemaFormatterTest.php
│ │ │ │ ├── SchemaValidatorTest.php
│ │ │ │ └── SerializerTest.php
│ │ │ ├── promises
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── AggregateException.php
│ │ │ │ ├── CancellationException.php
│ │ │ │ ├── Coroutine.php
│ │ │ │ ├── EachPromise.php
│ │ │ │ ├── FulfilledPromise.php
│ │ │ │ ├── Promise.php
│ │ │ │ ├── PromiseInterface.php
│ │ │ │ ├── PromisorInterface.php
│ │ │ │ ├── RejectedPromise.php
│ │ │ │ ├── RejectionException.php
│ │ │ │ ├── TaskQueue.php
│ │ │ │ ├── TaskQueueInterface.php
│ │ │ │ ├── functions.php
│ │ │ │ └── functions_include.php
│ │ │ └── psr7
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── AppendStream.php
│ │ │ ├── BufferStream.php
│ │ │ ├── CachingStream.php
│ │ │ ├── DroppingStream.php
│ │ │ ├── FnStream.php
│ │ │ ├── InflateStream.php
│ │ │ ├── LazyOpenStream.php
│ │ │ ├── LimitStream.php
│ │ │ ├── MessageTrait.php
│ │ │ ├── MultipartStream.php
│ │ │ ├── NoSeekStream.php
│ │ │ ├── PumpStream.php
│ │ │ ├── Request.php
│ │ │ ├── Response.php
│ │ │ ├── Rfc7230.php
│ │ │ ├── ServerRequest.php
│ │ │ ├── Stream.php
│ │ │ ├── StreamDecoratorTrait.php
│ │ │ ├── StreamWrapper.php
│ │ │ ├── UploadedFile.php
│ │ │ ├── Uri.php
│ │ │ ├── UriNormalizer.php
│ │ │ ├── UriResolver.php
│ │ │ ├── functions.php
│ │ │ └── functions_include.php
│ │ ├── jianyan74
│ │ │ └── php-excel
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── Excel.php
│ │ ├── league
│ │ │ ├── flysystem
│ │ │ │ ├── LICENSE
│ │ │ │ ├── composer.json
│ │ │ │ ├── deprecations.md
│ │ │ │ └── src
│ │ │ │ ├── Adapter
│ │ │ │ ├── AdapterInterface.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── ConfigAwareTrait.php
│ │ │ │ ├── Directory.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── File.php
│ │ │ │ ├── FileExistsException.php
│ │ │ │ ├── FileNotFoundException.php
│ │ │ │ ├── Filesystem.php
│ │ │ │ ├── FilesystemInterface.php
│ │ │ │ ├── FilesystemNotFoundException.php
│ │ │ │ ├── Handler.php
│ │ │ │ ├── MountManager.php
│ │ │ │ ├── NotSupportedException.php
│ │ │ │ ├── Plugin
│ │ │ │ ├── PluginInterface.php
│ │ │ │ ├── ReadInterface.php
│ │ │ │ ├── RootViolationException.php
│ │ │ │ ├── SafeStorage.php
│ │ │ │ ├── UnreadableFileException.php
│ │ │ │ ├── Util
│ │ │ │ └── Util.php
│ │ │ └── flysystem-cached-adapter
│ │ │ ├── LICENSE
│ │ │ ├── clover
│ │ │ ├── composer.json
│ │ │ ├── phpspec.yml
│ │ │ ├── phpunit.php
│ │ │ ├── phpunit.xml
│ │ │ ├── readme.md
│ │ │ ├── spec
│ │ │ │ └── CachedAdapterSpec.php
│ │ │ ├── src
│ │ │ │ ├── CacheInterface.php
│ │ │ │ ├── CachedAdapter.php
│ │ │ │ └── Storage
│ │ │ └── tests
│ │ │ ├── AdapterCacheTests.php
│ │ │ ├── InspectionTests.php
│ │ │ ├── MemcachedTests.php
│ │ │ ├── MemoryCacheTests.php
│ │ │ ├── NoopCacheTests.php
│ │ │ ├── PhpRedisTests.php
│ │ │ ├── PredisTests.php
│ │ │ ├── Psr6CacheTest.php
│ │ │ └── StashTest.php
│ │ ├── markbaker
│ │ │ ├── complex
│ │ │ │ ├── README.md
│ │ │ │ ├── classes
│ │ │ │ │ ├── Autoloader.php
│ │ │ │ │ ├── Bootstrap.php
│ │ │ │ │ └── src
│ │ │ │ ├── composer.json
│ │ │ │ ├── examples
│ │ │ │ │ ├── complexTest.php
│ │ │ │ │ ├── testFunctions.php
│ │ │ │ │ └── testOperations.php
│ │ │ │ └── license.md
│ │ │ └── matrix
│ │ │ ├── README.md
│ │ │ ├── buildPhar.php
│ │ │ ├── classes
│ │ │ │ ├── Autoloader.php
│ │ │ │ ├── Bootstrap.php
│ │ │ │ └── src
│ │ │ ├── composer.7.2.json
│ │ │ ├── composer.json
│ │ │ ├── examples
│ │ │ │ └── test.php
│ │ │ ├── infection.json.dist
│ │ │ ├── license.md
│ │ │ └── phpstan.neon
│ │ ├── mtdowling
│ │ │ └── jmespath.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.rst
│ │ │ ├── bin
│ │ │ │ ├── jp.php
│ │ │ │ └── perf.php
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── src
│ │ │ │ ├── AstRuntime.php
│ │ │ │ ├── CompilerRuntime.php
│ │ │ │ ├── DebugRuntime.php
│ │ │ │ ├── Env.php
│ │ │ │ ├── FnDispatcher.php
│ │ │ │ ├── JmesPath.php
│ │ │ │ ├── Lexer.php
│ │ │ │ ├── Parser.php
│ │ │ │ ├── SyntaxErrorException.php
│ │ │ │ ├── TreeCompiler.php
│ │ │ │ ├── TreeInterpreter.php
│ │ │ │ └── Utils.php
│ │ │ └── tests
│ │ │ ├── ComplianceTest.php
│ │ │ ├── EnvTest.php
│ │ │ ├── FnDispatcherTest.php
│ │ │ ├── LexerTest.php
│ │ │ ├── ParserTest.php
│ │ │ ├── SyntaxErrorExceptionTest.php
│ │ │ ├── TreeCompilerTest.php
│ │ │ ├── TreeInterpreterTest.php
│ │ │ ├── UtilsTest.php
│ │ │ └── compliance
│ │ ├── phpoffice
│ │ │ └── phpspreadsheet
│ │ │ ├── CHANGELOG.PHPExcel.md
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── bin
│ │ │ │ ├── generate-document
│ │ │ │ ├── migrate-from-phpexcel
│ │ │ │ └── pre-commit
│ │ │ ├── composer.json
│ │ │ ├── composer.lock
│ │ │ ├── docs
│ │ │ │ ├── assets
│ │ │ │ ├── extra
│ │ │ │ ├── faq.md
│ │ │ │ ├── index.md
│ │ │ │ ├── references
│ │ │ │ └── topics
│ │ │ ├── mkdocs.yml
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── samples
│ │ │ │ ├── Autofilter
│ │ │ │ ├── Basic
│ │ │ │ ├── Calculations
│ │ │ │ ├── Chart
│ │ │ │ ├── Header.php
│ │ │ │ ├── Pdf
│ │ │ │ ├── Reader
│ │ │ │ ├── Reading_workbook_data
│ │ │ │ ├── bootstrap
│ │ │ │ ├── images
│ │ │ │ ├── index.php
│ │ │ │ └── templates
│ │ │ └── src
│ │ │ ├── Bootstrap.php
│ │ │ └── PhpSpreadsheet
│ │ ├── psr
│ │ │ ├── cache
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── CacheException.php
│ │ │ │ ├── CacheItemInterface.php
│ │ │ │ ├── CacheItemPoolInterface.php
│ │ │ │ └── InvalidArgumentException.php
│ │ │ ├── container
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── ContainerExceptionInterface.php
│ │ │ │ ├── ContainerInterface.php
│ │ │ │ └── NotFoundExceptionInterface.php
│ │ │ ├── http-message
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── MessageInterface.php
│ │ │ │ ├── RequestInterface.php
│ │ │ │ ├── ResponseInterface.php
│ │ │ │ ├── ServerRequestInterface.php
│ │ │ │ ├── StreamInterface.php
│ │ │ │ ├── UploadedFileInterface.php
│ │ │ │ └── UriInterface.php
│ │ │ ├── log
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Psr
│ │ │ │ │ └── Log
│ │ │ │ ├── README.md
│ │ │ │ └── composer.json
│ │ │ └── simple-cache
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── CacheException.php
│ │ │ ├── CacheInterface.php
│ │ │ └── InvalidArgumentException.php
│ │ ├── qcloud
│ │ │ └── cos-sdk-v5
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── UPGRADING.md
│ │ │ ├── composer.json
│ │ │ ├── phpunit.xml
│ │ │ ├── sample
│ │ │ │ ├── abortMultipartUpload.php
│ │ │ │ ├── catchException.php
│ │ │ │ ├── completeMultipartUpload.php
│ │ │ │ ├── copy.php
│ │ │ │ ├── copyObject.php
│ │ │ │ ├── createBucket.php
│ │ │ │ ├── createMultipartUpload.php
│ │ │ │ ├── deleteBucket.php
│ │ │ │ ├── deleteBucketCors.php
│ │ │ │ ├── deleteBucketDomain.php
│ │ │ │ ├── deleteBucketLifecycle.php
│ │ │ │ ├── deleteBucketTagging.php
│ │ │ │ ├── deleteBucketWebsite.php
│ │ │ │ ├── deleteObject.php
│ │ │ │ ├── getBucketAcl.php
│ │ │ │ ├── getBucketCors.php
│ │ │ │ ├── getBucketDomain.php
│ │ │ │ ├── getBucketInventory.php
│ │ │ │ ├── getBucketLifecycle.php
│ │ │ │ ├── getBucketLogging.php
│ │ │ │ ├── getBucketTagging.php
│ │ │ │ ├── getBucketWebsite.php
│ │ │ │ ├── getObject.php
│ │ │ │ ├── getObjectUrl.php
│ │ │ │ ├── getPresignetUrl.php
│ │ │ │ ├── headBucket.php
│ │ │ │ ├── headObject.php
│ │ │ │ ├── listBucket.php
│ │ │ │ ├── listMultipartUploads.php
│ │ │ │ ├── listObjects.php
│ │ │ │ ├── listParts.php
│ │ │ │ ├── putBucketAcl.php
│ │ │ │ ├── putBucketCors.php
│ │ │ │ ├── putBucketDomain.php
│ │ │ │ ├── putBucketInventory.php
│ │ │ │ ├── putBucketLifecycle.php
│ │ │ │ ├── putBucketLogging.php
│ │ │ │ ├── putBucketTagging.php
│ │ │ │ ├── putBucketWebsite.php
│ │ │ │ ├── putObject.php
│ │ │ │ ├── restoreObject.php
│ │ │ │ ├── upload.php
│ │ │ │ └── uploadPart.php
│ │ │ └── src
│ │ │ └── Qcloud
│ │ ├── qiniu
│ │ │ └── php-sdk
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── autoload.php
│ │ │ ├── composer.json
│ │ │ ├── docs
│ │ │ │ ├── rtc
│ │ │ │ └── sms
│ │ │ ├── examples
│ │ │ │ ├── README.md
│ │ │ │ ├── bucket_lifecycleRule.php
│ │ │ │ ├── cdn_get_bandwidth.php
│ │ │ │ ├── cdn_get_flux.php
│ │ │ │ ├── cdn_get_log_list.php
│ │ │ │ ├── cdn_refresh_urls_dirs.php
│ │ │ │ ├── cdn_timestamp_antileech.php
│ │ │ │ ├── delete_bucket.php
│ │ │ │ ├── delete_bucketEvent.php
│ │ │ │ ├── delete_bucketLifecycleRule.php
│ │ │ │ ├── get_bucketEvents.php
│ │ │ │ ├── get_bucketLifecycleRules.php
│ │ │ │ ├── get_bucketList.php
│ │ │ │ ├── get_bucketQuota.php
│ │ │ │ ├── get_bucketinfo.php
│ │ │ │ ├── get_bucketinfos.php
│ │ │ │ ├── get_corsRules.php
│ │ │ │ ├── image_url_builder.php
│ │ │ │ ├── persistent_fop_init.php
│ │ │ │ ├── persistent_fop_status.php
│ │ │ │ ├── pfop_mkzip.php
│ │ │ │ ├── pfop_vframe.php
│ │ │ │ ├── pfop_video_avthumb.php
│ │ │ │ ├── pfop_watermark.php
│ │ │ │ ├── php-logo.png
│ │ │ │ ├── prefop.php
│ │ │ │ ├── pulpvideo.php
│ │ │ │ ├── put_bucketAccessMode.php
│ │ │ │ ├── put_bucketAccessStyleMode.php
│ │ │ │ ├── put_bucketEvent.php
│ │ │ │ ├── put_bucketMaxAge.php
│ │ │ │ ├── put_bucketQuota.php
│ │ │ │ ├── put_referAntiLeech.php
│ │ │ │ ├── qetag.php
│ │ │ │ ├── rs_batch_change_mime.php
│ │ │ │ ├── rs_batch_change_type.php
│ │ │ │ ├── rs_batch_copy.php
│ │ │ │ ├── rs_batch_delete.php
│ │ │ │ ├── rs_batch_delete_after_days.php
│ │ │ │ ├── rs_batch_move.php
│ │ │ │ ├── rs_batch_stat.php
│ │ │ │ ├── rs_bucket_domains.php
│ │ │ │ ├── rs_buckets.php
│ │ │ │ ├── rs_change_mime.php
│ │ │ │ ├── rs_change_status.php
│ │ │ │ ├── rs_change_type.php
│ │ │ │ ├── rs_copy.php
│ │ │ │ ├── rs_delete.php
│ │ │ │ ├── rs_delete_after_days.php
│ │ │ │ ├── rs_download_urls.php
│ │ │ │ ├── rs_fetch.php
│ │ │ │ ├── rs_move.php
│ │ │ │ ├── rs_prefetch.php
│ │ │ │ ├── rs_pub_domain.php
│ │ │ │ ├── rs_stat.php
│ │ │ │ ├── rsf_list_bucket.php
│ │ │ │ ├── rsf_list_files.php
│ │ │ │ ├── rsf_v2list_bucket.php
│ │ │ │ ├── saveas.php
│ │ │ │ ├── update_bucketEvent.php
│ │ │ │ ├── update_bucketLifecycleRule.php
│ │ │ │ ├── upload_and_callback.php
│ │ │ │ ├── upload_and_pfop.php
│ │ │ │ ├── upload_mgr_init.php
│ │ │ │ ├── upload_multi_demos.php
│ │ │ │ ├── upload_simple_file.php
│ │ │ │ ├── upload_tokens.php
│ │ │ │ └── upload_verify_callback.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── src
│ │ │ │ └── Qiniu
│ │ │ ├── test-env.sh
│ │ │ └── tests
│ │ │ ├── Qiniu
│ │ │ └── bootstrap.php
│ │ ├── ralouphie
│ │ │ └── getallheaders
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── getallheaders.php
│ │ ├── services.php
│ │ ├── symfony
│ │ │ ├── polyfill-mbstring
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Mbstring.php
│ │ │ │ ├── README.md
│ │ │ │ ├── Resources
│ │ │ │ │ └── unidata
│ │ │ │ ├── bootstrap.php
│ │ │ │ └── composer.json
│ │ │ ├── polyfill-php72
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Php72.php
│ │ │ │ ├── README.md
│ │ │ │ ├── bootstrap.php
│ │ │ │ └── composer.json
│ │ │ └── var-dumper
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Caster
│ │ │ │ ├── AmqpCaster.php
│ │ │ │ ├── ArgsStub.php
│ │ │ │ ├── Caster.php
│ │ │ │ ├── ClassStub.php
│ │ │ │ ├── ConstStub.php
│ │ │ │ ├── CutArrayStub.php
│ │ │ │ ├── CutStub.php
│ │ │ │ ├── DOMCaster.php
│ │ │ │ ├── DateCaster.php
│ │ │ │ ├── DoctrineCaster.php
│ │ │ │ ├── DsCaster.php
│ │ │ │ ├── DsPairStub.php
│ │ │ │ ├── EnumStub.php
│ │ │ │ ├── ExceptionCaster.php
│ │ │ │ ├── FrameStub.php
│ │ │ │ ├── GmpCaster.php
│ │ │ │ ├── IntlCaster.php
│ │ │ │ ├── LinkStub.php
│ │ │ │ ├── MemcachedCaster.php
│ │ │ │ ├── PdoCaster.php
│ │ │ │ ├── PgSqlCaster.php
│ │ │ │ ├── ProxyManagerCaster.php
│ │ │ │ ├── RedisCaster.php
│ │ │ │ ├── ReflectionCaster.php
│ │ │ │ ├── ResourceCaster.php
│ │ │ │ ├── SplCaster.php
│ │ │ │ ├── StubCaster.php
│ │ │ │ ├── SymfonyCaster.php
│ │ │ │ ├── TraceStub.php
│ │ │ │ ├── XmlReaderCaster.php
│ │ │ │ └── XmlResourceCaster.php
│ │ │ ├── Cloner
│ │ │ │ ├── AbstractCloner.php
│ │ │ │ ├── ClonerInterface.php
│ │ │ │ ├── Cursor.php
│ │ │ │ ├── Data.php
│ │ │ │ ├── DumperInterface.php
│ │ │ │ ├── Stub.php
│ │ │ │ └── VarCloner.php
│ │ │ ├── Command
│ │ │ │ ├── Descriptor
│ │ │ │ └── ServerDumpCommand.php
│ │ │ ├── Dumper
│ │ │ │ ├── AbstractDumper.php
│ │ │ │ ├── CliDumper.php
│ │ │ │ ├── ContextProvider
│ │ │ │ ├── DataDumperInterface.php
│ │ │ │ ├── HtmlDumper.php
│ │ │ │ └── ServerDumper.php
│ │ │ ├── Exception
│ │ │ │ └── ThrowingCasterException.php
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ ├── bin
│ │ │ │ ├── css
│ │ │ │ ├── functions
│ │ │ │ └── js
│ │ │ ├── Server
│ │ │ │ ├── Connection.php
│ │ │ │ └── DumpServer.php
│ │ │ ├── Test
│ │ │ │ └── VarDumperTestTrait.php
│ │ │ ├── Tests
│ │ │ │ ├── Caster
│ │ │ │ ├── Cloner
│ │ │ │ ├── Command
│ │ │ │ ├── Dumper
│ │ │ │ ├── Fixtures
│ │ │ │ ├── Server
│ │ │ │ └── Test
│ │ │ ├── VarDumper.php
│ │ │ ├── composer.json
│ │ │ └── phpunit.xml.dist
│ │ ├── topthink
│ │ │ ├── framework
│ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ ├── logo.png
│ │ │ │ ├── phpunit.xml.dist
│ │ │ │ ├── src
│ │ │ │ │ ├── helper.php
│ │ │ │ │ ├── lang
│ │ │ │ │ ├── think
│ │ │ │ │ └── tpl
│ │ │ │ └── tests
│ │ │ │ ├── AppTest.php
│ │ │ │ ├── CacheTest.php
│ │ │ │ ├── ConfigTest.php
│ │ │ │ ├── ContainerTest.php
│ │ │ │ ├── DbTest.php
│ │ │ │ ├── EnvTest.php
│ │ │ │ ├── EventTest.php
│ │ │ │ ├── FilesystemTest.php
│ │ │ │ ├── HttpTest.php
│ │ │ │ ├── InteractsWithApp.php
│ │ │ │ ├── LogTest.php
│ │ │ │ ├── MiddlewareTest.php
│ │ │ │ ├── RouteTest.php
│ │ │ │ ├── SessionTest.php
│ │ │ │ ├── ViewTest.php
│ │ │ │ └── bootstrap.php
│ │ │ ├── think-captcha
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── assets
│ │ │ │ │ ├── bgs
│ │ │ │ │ ├── ttfs
│ │ │ │ │ └── zhttfs
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── Captcha.php
│ │ │ │ ├── CaptchaController.php
│ │ │ │ ├── CaptchaService.php
│ │ │ │ ├── config.php
│ │ │ │ ├── facade
│ │ │ │ └── helper.php
│ │ │ ├── think-helper
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── Collection.php
│ │ │ │ ├── contract
│ │ │ │ ├── helper
│ │ │ │ └── helper.php
│ │ │ ├── think-multi-app
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── MultiApp.php
│ │ │ │ ├── Service.php
│ │ │ │ ├── Url.php
│ │ │ │ └── command
│ │ │ ├── think-orm
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── DbManager.php
│ │ │ │ ├── Model.php
│ │ │ │ ├── Paginator.php
│ │ │ │ ├── db
│ │ │ │ ├── facade
│ │ │ │ ├── model
│ │ │ │ └── paginator
│ │ │ ├── think-template
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── composer.json
│ │ │ │ └── src
│ │ │ │ ├── Template.php
│ │ │ │ ├── facade
│ │ │ │ └── template
│ │ │ └── think-view
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ └── Think.php
│ │ ├── xxh
│ │ │ └── think-wxminihelper
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── src
│ │ │ ├── ErrorCode.php
│ │ │ ├── PKCS7Encoder.php
│ │ │ ├── Prpcrypt.php
│ │ │ ├── WXBizDataCrypt.php
│ │ │ └── WXLoginHelper.php
│ │ └── zhongshaofa
│ │ ├── easy-admin
│ │ │ ├── composer.json
│ │ │ ├── composer.lock
│ │ │ ├── mock_app
│ │ │ │ ├── BaseController.php
│ │ │ │ ├── controller
│ │ │ │ └── controllerV2
│ │ │ ├── src
│ │ │ │ ├── annotation
│ │ │ │ ├── auth
│ │ │ │ ├── console
│ │ │ │ ├── curd
│ │ │ │ ├── tool
│ │ │ │ └── upload
│ │ │ └── tests
│ │ │ └── AnnotationTest.php
│ │ └── thinkphp-log-trace
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── src
│ │ │ ├── FileLog.php
│ │ │ ├── IdCreate.php
│ │ │ ├── SnowFlake.php
│ │ │ └── TraceId.php
│ │ └── tests
│ │ ├── IdCreateTest.php
│ │ └── TraceIdTest.php
│ ├── version
│ └── view
│ ├── README.md
│ └── index
│ └── welcome.html
└── 5t6t网_hotel-master.zip
426 directories, 1003 files
评论