├── conf └── index.html ├── log ├── index.html ├── php │ └── index.html ├── sql │ └── index.html ├── crontab │ └── index.html ├── request │ └── index.html ├── sqld │ └── index.html └── yewu │ └── index.html ├── temp └── index.html ├── application ├── index.html ├── library │ ├── Pay │ │ ├── wxh5 │ │ │ └── pem │ │ │ │ └── index.html │ │ ├── wxapp │ │ │ └── pem │ │ │ │ └── index.html │ │ └── wxf2f │ │ │ └── pem │ │ │ └── index.html │ ├── Captcha │ │ ├── backgrounds │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ └── 12.png │ │ └── font │ │ │ ├── captcha0.ttf │ │ │ ├── captcha1.ttf │ │ │ ├── captcha2.ttf │ │ │ ├── captcha3.ttf │ │ │ ├── captcha4.ttf │ │ │ ├── captcha5.ttf │ │ │ ├── captcha6.ttf │ │ │ ├── captcha7.ttf │ │ │ ├── captcha8.ttf │ │ │ ├── captcha9.ttf │ │ │ ├── captcha10.ttf │ │ │ └── captcha11.ttf │ └── Safe │ │ └── MyInt.php ├── model │ ├── M_Order.php │ ├── M_Help.php │ ├── M_Products.php │ ├── M_Ticket.php │ ├── M_Default.php │ ├── M_Email_queue.php │ ├── M_Email_code.php │ ├── M_Products_card.php │ ├── M_Config_cat.php │ └── M_User_login_logs.php ├── controllers │ └── About.php └── modules │ └── Admin │ └── views │ └── common │ ├── footer.html │ ├── report-nav.html │ └── user-nav.html ├── public ├── res │ ├── index.html │ ├── js │ │ └── index.html │ ├── upload │ │ └── index.html │ ├── css │ │ ├── iconfont.eot │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── admin │ │ │ └── login.css │ ├── images │ │ ├── logo.png │ │ ├── noimg.jpg │ │ ├── avatar │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── 10.jpg │ │ │ └── 11.jpg │ │ ├── pay │ │ │ ├── bank.png │ │ │ ├── load.gif │ │ │ ├── wxh5.jpg │ │ │ ├── alipay.jpg │ │ │ ├── paypal.jpg │ │ │ ├── qqpay.jpg │ │ │ ├── tenpay.jpg │ │ │ ├── weixin.jpg │ │ │ ├── yzpay.jpg │ │ │ ├── alipaywap.jpg │ │ │ ├── alipayweb.jpg │ │ │ ├── overtime.jpg │ │ │ ├── overtime.png │ │ │ ├── supportme.jpg │ │ │ ├── wxnative.jpg │ │ │ ├── weburl-error.png │ │ │ └── wechat-pay.png │ │ ├── admin │ │ │ ├── bg1.jpg │ │ │ ├── bg10.jpg │ │ │ ├── bg2.jpg │ │ │ ├── bg3.jpg │ │ │ ├── bg4.jpg │ │ │ ├── bg5.jpg │ │ │ ├── bg6.jpg │ │ │ ├── bg7.jpg │ │ │ ├── bg8.jpg │ │ │ └── bg9.jpg │ │ └── wiki │ │ │ ├── bt │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ │ ├── lnmp │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ │ └── setup │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── layui │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ └── css │ │ │ └── modules │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon.png │ │ │ ├── icon-ext.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ └── mods │ │ └── adminreport.js ├── favicon.ico ├── templates │ ├── choice │ │ └── images │ │ │ └── noimg.jpg │ ├── shadan │ │ └── images │ │ │ └── noimg.jpg │ ├── hibiscus │ │ └── images │ │ │ └── noimg.jpg │ └── hyacinth │ │ └── images │ │ └── noimg.jpg ├── robots.txt ├── cli.php └── index.php ├── .gitignore ├── install ├── 1.2.9 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.3.3 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.3.4 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.2.0 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.0.2 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.3 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.5 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.2.8 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.0 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.3.0 │ └── upgrade.txt ├── 1.0.3 │ └── upgrade.txt ├── 1.0.9 │ └── upgrade.txt ├── 1.3.8 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.0.5 │ ├── upgrade.sql │ └── upgrade.txt ├── 1.0.6 │ ├── upgrade.sql │ └── upgrade.txt ├── 1.1.1 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.4 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.6 │ ├── upgrade.sql │ └── upgrade.txt ├── 1.2.2 │ ├── upgrade.sql │ └── upgrade.txt ├── 1.2.4 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.4.4 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.9 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.2.6 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.3.6 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.4.0 │ └── upgrade.txt ├── 1.0.7 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.8 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.2.3 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.3.7 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.0.8 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.3.9 │ └── upgrade.txt ├── 1.1.2 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.2.7 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.3.5 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.1.7 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.2.1 │ └── upgrade.txt ├── 1.3.1 │ └── upgrade.txt ├── 1.4.1 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.2.5 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.0.4 │ ├── upgrade.txt │ └── upgrade.sql ├── 1.4.3 │ └── upgrade.txt └── 1.4.2 │ └── upgrade.txt ├── vendor ├── paypal │ └── paypal-checkout-sdk │ │ ├── init │ │ ├── .gitignore │ │ ├── composer.phar │ │ ├── homepage.jpg │ │ ├── gen.yml │ │ ├── lib │ │ └── PayPalCheckoutSdk │ │ │ └── Core │ │ │ ├── Version.php │ │ │ ├── GzipInjector.php │ │ │ ├── ProductionEnvironment.php │ │ │ └── SandboxEnvironment.php │ │ └── phpunit.xml ├── aferrandini │ └── phpqrcode │ │ ├── .gitignore │ │ ├── VERSION │ │ └── cache │ │ ├── frame_1.dat │ │ ├── frame_1.png │ │ ├── frame_10.dat │ │ ├── frame_10.png │ │ ├── frame_11.dat │ │ ├── frame_11.png │ │ ├── frame_12.dat │ │ ├── frame_12.png │ │ ├── frame_13.dat │ │ ├── frame_13.png │ │ ├── frame_14.dat │ │ ├── frame_14.png │ │ ├── frame_15.dat │ │ ├── frame_15.png │ │ ├── frame_16.dat │ │ ├── frame_16.png │ │ ├── frame_17.dat │ │ ├── frame_17.png │ │ ├── frame_18.dat │ │ ├── frame_18.png │ │ ├── frame_19.dat │ │ ├── frame_19.png │ │ ├── frame_2.dat │ │ ├── frame_2.png │ │ ├── frame_20.dat │ │ ├── frame_20.png │ │ ├── frame_21.dat │ │ ├── frame_21.png │ │ ├── frame_22.dat │ │ ├── frame_22.png │ │ ├── frame_23.dat │ │ ├── frame_23.png │ │ ├── frame_24.dat │ │ ├── frame_24.png │ │ ├── frame_25.dat │ │ ├── frame_25.png │ │ ├── frame_26.dat │ │ ├── frame_26.png │ │ ├── frame_27.dat │ │ ├── frame_27.png │ │ ├── frame_28.dat │ │ ├── frame_28.png │ │ ├── frame_29.dat │ │ ├── frame_29.png │ │ ├── frame_3.dat │ │ ├── frame_3.png │ │ ├── frame_30.dat │ │ ├── frame_30.png │ │ ├── frame_31.dat │ │ ├── frame_31.png │ │ ├── frame_32.dat │ │ ├── frame_32.png │ │ ├── frame_33.dat │ │ ├── frame_33.png │ │ ├── frame_34.dat │ │ ├── frame_34.png │ │ ├── frame_35.dat │ │ ├── frame_35.png │ │ ├── frame_36.dat │ │ ├── frame_36.png │ │ ├── frame_37.dat │ │ ├── frame_37.png │ │ ├── frame_38.dat │ │ ├── frame_38.png │ │ ├── frame_39.dat │ │ ├── frame_39.png │ │ ├── frame_4.dat │ │ ├── frame_4.png │ │ ├── frame_40.dat │ │ ├── frame_40.png │ │ ├── frame_5.dat │ │ ├── frame_5.png │ │ ├── frame_6.dat │ │ ├── frame_6.png │ │ ├── frame_7.dat │ │ ├── frame_7.png │ │ ├── frame_8.dat │ │ ├── frame_8.png │ │ ├── frame_9.dat │ │ ├── frame_9.png │ │ ├── mask_0 │ │ ├── mask_21_0.dat │ │ ├── mask_25_0.dat │ │ ├── mask_29_0.dat │ │ ├── mask_33_0.dat │ │ ├── mask_37_0.dat │ │ ├── mask_41_0.dat │ │ ├── mask_45_0.dat │ │ ├── mask_49_0.dat │ │ ├── mask_53_0.dat │ │ ├── mask_57_0.dat │ │ ├── mask_61_0.dat │ │ ├── mask_65_0.dat │ │ ├── mask_69_0.dat │ │ ├── mask_73_0.dat │ │ ├── mask_77_0.dat │ │ ├── mask_81_0.dat │ │ ├── mask_85_0.dat │ │ ├── mask_89_0.dat │ │ ├── mask_93_0.dat │ │ ├── mask_97_0.dat │ │ ├── mask_101_0.dat │ │ ├── mask_105_0.dat │ │ ├── mask_109_0.dat │ │ ├── mask_113_0.dat │ │ ├── mask_117_0.dat │ │ ├── mask_121_0.dat │ │ ├── mask_125_0.dat │ │ ├── mask_129_0.dat │ │ ├── mask_133_0.dat │ │ ├── mask_137_0.dat │ │ ├── mask_141_0.dat │ │ ├── mask_145_0.dat │ │ ├── mask_149_0.dat │ │ ├── mask_153_0.dat │ │ ├── mask_157_0.dat │ │ ├── mask_161_0.dat │ │ ├── mask_165_0.dat │ │ ├── mask_169_0.dat │ │ ├── mask_173_0.dat │ │ └── mask_177_0.dat │ │ ├── mask_1 │ │ ├── mask_21_1.dat │ │ ├── mask_25_1.dat │ │ ├── mask_29_1.dat │ │ ├── mask_33_1.dat │ │ ├── mask_37_1.dat │ │ ├── mask_41_1.dat │ │ ├── mask_45_1.dat │ │ ├── mask_49_1.dat │ │ ├── mask_53_1.dat │ │ ├── mask_57_1.dat │ │ ├── mask_61_1.dat │ │ ├── mask_65_1.dat │ │ ├── mask_69_1.dat │ │ ├── mask_73_1.dat │ │ ├── mask_77_1.dat │ │ ├── mask_81_1.dat │ │ ├── mask_85_1.dat │ │ ├── mask_89_1.dat │ │ ├── mask_93_1.dat │ │ ├── mask_97_1.dat │ │ ├── mask_101_1.dat │ │ ├── mask_105_1.dat │ │ ├── mask_109_1.dat │ │ ├── mask_113_1.dat │ │ ├── mask_117_1.dat │ │ ├── mask_121_1.dat │ │ ├── mask_125_1.dat │ │ ├── mask_129_1.dat │ │ ├── mask_133_1.dat │ │ ├── mask_137_1.dat │ │ ├── mask_141_1.dat │ │ ├── mask_145_1.dat │ │ ├── mask_149_1.dat │ │ ├── mask_153_1.dat │ │ ├── mask_157_1.dat │ │ ├── mask_161_1.dat │ │ ├── mask_165_1.dat │ │ ├── mask_169_1.dat │ │ ├── mask_173_1.dat │ │ └── mask_177_1.dat │ │ ├── mask_2 │ │ ├── mask_21_2.dat │ │ ├── mask_25_2.dat │ │ ├── mask_29_2.dat │ │ ├── mask_33_2.dat │ │ ├── mask_37_2.dat │ │ ├── mask_41_2.dat │ │ ├── mask_45_2.dat │ │ ├── mask_49_2.dat │ │ ├── mask_53_2.dat │ │ ├── mask_57_2.dat │ │ ├── mask_61_2.dat │ │ ├── mask_65_2.dat │ │ ├── mask_69_2.dat │ │ ├── mask_73_2.dat │ │ ├── mask_77_2.dat │ │ ├── mask_81_2.dat │ │ ├── mask_85_2.dat │ │ ├── mask_89_2.dat │ │ ├── mask_93_2.dat │ │ ├── mask_97_2.dat │ │ ├── mask_101_2.dat │ │ ├── mask_105_2.dat │ │ ├── mask_109_2.dat │ │ ├── mask_113_2.dat │ │ ├── mask_117_2.dat │ │ ├── mask_121_2.dat │ │ ├── mask_125_2.dat │ │ ├── mask_129_2.dat │ │ ├── mask_133_2.dat │ │ ├── mask_137_2.dat │ │ ├── mask_141_2.dat │ │ ├── mask_145_2.dat │ │ ├── mask_149_2.dat │ │ ├── mask_153_2.dat │ │ ├── mask_157_2.dat │ │ ├── mask_161_2.dat │ │ ├── mask_165_2.dat │ │ ├── mask_169_2.dat │ │ ├── mask_173_2.dat │ │ └── mask_177_2.dat │ │ ├── mask_3 │ │ ├── mask_21_3.dat │ │ ├── mask_25_3.dat │ │ ├── mask_29_3.dat │ │ ├── mask_33_3.dat │ │ ├── mask_37_3.dat │ │ ├── mask_41_3.dat │ │ ├── mask_45_3.dat │ │ ├── mask_49_3.dat │ │ ├── mask_53_3.dat │ │ ├── mask_57_3.dat │ │ ├── mask_61_3.dat │ │ ├── mask_65_3.dat │ │ ├── mask_69_3.dat │ │ ├── mask_73_3.dat │ │ ├── mask_77_3.dat │ │ ├── mask_81_3.dat │ │ ├── mask_85_3.dat │ │ ├── mask_89_3.dat │ │ ├── mask_93_3.dat │ │ ├── mask_97_3.dat │ │ ├── mask_101_3.dat │ │ ├── mask_105_3.dat │ │ ├── mask_109_3.dat │ │ ├── mask_113_3.dat │ │ ├── mask_117_3.dat │ │ ├── mask_121_3.dat │ │ ├── mask_125_3.dat │ │ ├── mask_129_3.dat │ │ ├── mask_133_3.dat │ │ ├── mask_137_3.dat │ │ ├── mask_141_3.dat │ │ ├── mask_145_3.dat │ │ ├── mask_149_3.dat │ │ ├── mask_153_3.dat │ │ ├── mask_157_3.dat │ │ ├── mask_161_3.dat │ │ ├── mask_165_3.dat │ │ ├── mask_169_3.dat │ │ ├── mask_173_3.dat │ │ └── mask_177_3.dat │ │ ├── mask_4 │ │ ├── mask_21_4.dat │ │ ├── mask_25_4.dat │ │ ├── mask_29_4.dat │ │ ├── mask_33_4.dat │ │ ├── mask_37_4.dat │ │ ├── mask_41_4.dat │ │ ├── mask_45_4.dat │ │ ├── mask_49_4.dat │ │ ├── mask_53_4.dat │ │ ├── mask_57_4.dat │ │ ├── mask_61_4.dat │ │ ├── mask_65_4.dat │ │ ├── mask_69_4.dat │ │ ├── mask_73_4.dat │ │ ├── mask_77_4.dat │ │ ├── mask_81_4.dat │ │ ├── mask_85_4.dat │ │ ├── mask_89_4.dat │ │ ├── mask_93_4.dat │ │ ├── mask_97_4.dat │ │ ├── mask_101_4.dat │ │ ├── mask_105_4.dat │ │ ├── mask_109_4.dat │ │ ├── mask_113_4.dat │ │ ├── mask_117_4.dat │ │ ├── mask_121_4.dat │ │ ├── mask_125_4.dat │ │ ├── mask_129_4.dat │ │ ├── mask_133_4.dat │ │ ├── mask_137_4.dat │ │ ├── mask_141_4.dat │ │ ├── mask_145_4.dat │ │ ├── mask_149_4.dat │ │ ├── mask_153_4.dat │ │ ├── mask_157_4.dat │ │ ├── mask_161_4.dat │ │ ├── mask_165_4.dat │ │ ├── mask_169_4.dat │ │ ├── mask_173_4.dat │ │ └── mask_177_4.dat │ │ ├── mask_5 │ │ ├── mask_21_5.dat │ │ ├── mask_25_5.dat │ │ ├── mask_29_5.dat │ │ ├── mask_33_5.dat │ │ ├── mask_37_5.dat │ │ ├── mask_41_5.dat │ │ ├── mask_45_5.dat │ │ ├── mask_49_5.dat │ │ ├── mask_53_5.dat │ │ ├── mask_57_5.dat │ │ ├── mask_61_5.dat │ │ ├── mask_65_5.dat │ │ ├── mask_69_5.dat │ │ ├── mask_73_5.dat │ │ ├── mask_77_5.dat │ │ ├── mask_81_5.dat │ │ ├── mask_85_5.dat │ │ ├── mask_89_5.dat │ │ ├── mask_93_5.dat │ │ ├── mask_97_5.dat │ │ ├── mask_101_5.dat │ │ ├── mask_105_5.dat │ │ ├── mask_109_5.dat │ │ ├── mask_113_5.dat │ │ ├── mask_117_5.dat │ │ ├── mask_121_5.dat │ │ ├── mask_125_5.dat │ │ ├── mask_129_5.dat │ │ ├── mask_133_5.dat │ │ ├── mask_137_5.dat │ │ ├── mask_141_5.dat │ │ ├── mask_145_5.dat │ │ ├── mask_149_5.dat │ │ ├── mask_153_5.dat │ │ ├── mask_157_5.dat │ │ ├── mask_161_5.dat │ │ ├── mask_165_5.dat │ │ ├── mask_169_5.dat │ │ ├── mask_173_5.dat │ │ └── mask_177_5.dat │ │ ├── mask_6 │ │ ├── mask_21_6.dat │ │ ├── mask_25_6.dat │ │ ├── mask_29_6.dat │ │ ├── mask_33_6.dat │ │ ├── mask_37_6.dat │ │ ├── mask_41_6.dat │ │ ├── mask_45_6.dat │ │ ├── mask_49_6.dat │ │ ├── mask_53_6.dat │ │ ├── mask_57_6.dat │ │ ├── mask_61_6.dat │ │ ├── mask_65_6.dat │ │ ├── mask_69_6.dat │ │ ├── mask_73_6.dat │ │ ├── mask_77_6.dat │ │ ├── mask_81_6.dat │ │ ├── mask_85_6.dat │ │ ├── mask_89_6.dat │ │ ├── mask_93_6.dat │ │ ├── mask_97_6.dat │ │ ├── mask_101_6.dat │ │ ├── mask_105_6.dat │ │ ├── mask_109_6.dat │ │ ├── mask_113_6.dat │ │ ├── mask_117_6.dat │ │ ├── mask_121_6.dat │ │ ├── mask_125_6.dat │ │ ├── mask_129_6.dat │ │ ├── mask_133_6.dat │ │ ├── mask_137_6.dat │ │ ├── mask_141_6.dat │ │ ├── mask_145_6.dat │ │ ├── mask_149_6.dat │ │ ├── mask_153_6.dat │ │ ├── mask_157_6.dat │ │ ├── mask_161_6.dat │ │ ├── mask_165_6.dat │ │ ├── mask_169_6.dat │ │ ├── mask_173_6.dat │ │ └── mask_177_6.dat │ │ └── mask_7 │ │ ├── mask_21_7.dat │ │ ├── mask_25_7.dat │ │ ├── mask_29_7.dat │ │ ├── mask_33_7.dat │ │ ├── mask_37_7.dat │ │ ├── mask_41_7.dat │ │ ├── mask_45_7.dat │ │ ├── mask_49_7.dat │ │ ├── mask_53_7.dat │ │ ├── mask_57_7.dat │ │ ├── mask_61_7.dat │ │ ├── mask_65_7.dat │ │ ├── mask_69_7.dat │ │ ├── mask_73_7.dat │ │ ├── mask_77_7.dat │ │ ├── mask_81_7.dat │ │ ├── mask_85_7.dat │ │ ├── mask_89_7.dat │ │ ├── mask_93_7.dat │ │ ├── mask_97_7.dat │ │ ├── mask_101_7.dat │ │ ├── mask_105_7.dat │ │ ├── mask_109_7.dat │ │ ├── mask_113_7.dat │ │ ├── mask_117_7.dat │ │ ├── mask_121_7.dat │ │ ├── mask_125_7.dat │ │ ├── mask_129_7.dat │ │ ├── mask_133_7.dat │ │ ├── mask_137_7.dat │ │ ├── mask_141_7.dat │ │ ├── mask_145_7.dat │ │ ├── mask_149_7.dat │ │ ├── mask_153_7.dat │ │ ├── mask_157_7.dat │ │ ├── mask_161_7.dat │ │ ├── mask_165_7.dat │ │ ├── mask_169_7.dat │ │ ├── mask_173_7.dat │ │ └── mask_177_7.dat ├── magicalex │ └── write-ini-file │ │ ├── tests │ │ └── file_ini │ │ │ ├── testErase1.ini │ │ │ ├── corruptiniFile.ini │ │ │ ├── testEscapeCharacters1.ini │ │ │ ├── testRm1.ini │ │ │ ├── testUpdate1.ini │ │ │ ├── testCreate1.ini │ │ │ └── testAdd1.ini │ │ ├── .coveralls.yml │ │ ├── .styleci.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── .editorconfig ├── ralouphie │ └── getallheaders │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── composer.json ├── braintree │ └── braintreehttp │ │ ├── Rakefile │ │ ├── .gitattributes │ │ ├── phpunit.xml │ │ ├── CONTRIBUTING.md │ │ ├── lib │ │ └── BraintreeHttp │ │ │ ├── IOException.php │ │ │ ├── Environment.php │ │ │ └── Injector.php │ │ └── .travis.yml ├── guzzlehttp │ ├── guzzle │ │ └── src │ │ │ ├── Exception │ │ │ ├── TooManyRedirectsException.php │ │ │ ├── TransferException.php │ │ │ ├── ClientException.php │ │ │ ├── ServerException.php │ │ │ └── GuzzleException.php │ │ │ └── functions_include.php │ ├── psr7 │ │ ├── src │ │ │ └── functions_include.php │ │ └── .editorconfig │ └── promises │ │ ├── src │ │ ├── functions_include.php │ │ ├── CancellationException.php │ │ ├── PromisorInterface.php │ │ └── AggregateException.php │ │ └── Makefile ├── autoload.php ├── composer │ ├── autoload_classmap.php │ └── autoload_namespaces.php ├── riverslei │ └── payment │ │ ├── .gitignore │ │ ├── src │ │ └── CacertFile │ │ │ └── old_alipay_public_key.pem │ │ ├── examples │ │ └── index.html │ │ └── autoload.php └── psr │ └── http-message │ └── README.md ├── nginx.rewrite ├── composer.json ├── index.html └── auto_install.json /conf/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/php/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/sql/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /temp/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/crontab/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/request/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/sqld/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/yewu/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/res/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/res/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/res/upload/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/private/ -------------------------------------------------------------------------------- /install/1.2.9/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.新增收款宝QQ收款接口 -------------------------------------------------------------------------------- /install/1.3.3/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修复了一系列的问题; -------------------------------------------------------------------------------- /install/1.3.4/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修复了一系列的问题; -------------------------------------------------------------------------------- /vendor/paypal/paypal-checkout-sdk/init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/library/Pay/wxh5/pem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/library/Pay/wxapp/pem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/library/Pay/wxf2f/pem/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/1.2.0/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.新增弹窗广告; 2 | 2.优化部分细节 -------------------------------------------------------------------------------- /install/1.0.2/upgrade.txt: -------------------------------------------------------------------------------- 1 | 本次升级,支持码支付-QQ支付;码支付-微信支付 -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /install/1.1.3/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.改造支付接口回调规范; 2 | 2.新增有赞支付接口; -------------------------------------------------------------------------------- /install/1.1.5/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修复1.1.4遗留问题; 2 | 2.改造升级功能; -------------------------------------------------------------------------------- /install/1.2.8/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.感谢lop与风铃大佬,对大部分字段进行了强限制与强过滤; -------------------------------------------------------------------------------- /install/1.1.0/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.优化了移动端适配; 2 | 2.修复了1.0.9初始化sql异常问题; -------------------------------------------------------------------------------- /install/1.3.0/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.新增批发折扣功能 2 | 2.新增数据名称支持下划线以及中划线。 -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.5 2 | 2012021604 3 | -------------------------------------------------------------------------------- /vendor/magicalex/write-ini-file/tests/file_ini/testErase1.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/magicalex/write-ini-file/tests/file_ini/corruptiniFile.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/paypal/paypal-checkout-sdk/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /install/1.0.3/upgrade.txt: -------------------------------------------------------------------------------- 1 | 本次升级,完善了后台管理功能,增加订单、商品、商品分类删除功能,同时完善卡密的筛选管理;还增加了首页公告。 -------------------------------------------------------------------------------- /install/1.0.9/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.添加微信扫码支付(没有测试暂不能使用,如需使用,请联系我;); 2 | 2.添加商品附加输入信息; -------------------------------------------------------------------------------- /install/1.3.8/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.延长token的时间,由1分钟改为5分钟 2 | 2.改造邮件发送,增加后台开关,立即发/定时任务发 -------------------------------------------------------------------------------- /install/1.0.5/upgrade.sql: -------------------------------------------------------------------------------- 1 | UPDATE `t_config` SET `catid` = '1' WHERE `id` = 8; 2 | -------------------------------------------------------------------------------- /install/1.0.6/upgrade.sql: -------------------------------------------------------------------------------- 1 | UPDATE `t_config` SET `catid` = '1' WHERE `id` = 8; 2 | -------------------------------------------------------------------------------- /install/1.1.0/upgrade.sql: -------------------------------------------------------------------------------- 1 | UPDATE `t_config` SET `catid` = '1' WHERE `id` = 8; 2 | -------------------------------------------------------------------------------- /install/1.1.1/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.购买商品时增加邮箱、QQ输入选择; 2 | 2.优化会员中心产品管理; 3 | 3.优化部分文字内容; -------------------------------------------------------------------------------- /install/1.1.4/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.增加产品前台列表显示模式; 2 | 2.改造后台设置中心; 3 | 3.新增统计设置、LOGO设置; -------------------------------------------------------------------------------- /install/1.1.5/upgrade.sql: -------------------------------------------------------------------------------- 1 | UPDATE `t_config` SET `catid` = '1' WHERE `id` = 8; 2 | -------------------------------------------------------------------------------- /install/1.1.6/upgrade.sql: -------------------------------------------------------------------------------- 1 | UPDATE `t_config` SET `catid` = '1' WHERE `id` = 8; 2 | -------------------------------------------------------------------------------- /install/1.2.2/upgrade.sql: -------------------------------------------------------------------------------- 1 | UPDATE `t_payment` SET `payment` = '收款宝' WHERE `id` = 8; -------------------------------------------------------------------------------- /install/1.2.4/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.强化商品与分类密码功能; 2 | 2.新增首页分类列表,与分类独立页; 3 | 3.安全增强 4 | -------------------------------------------------------------------------------- /install/1.4.4/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修复上一个版本smtp拼写错误; 2 | 2.增加后台修改管理员账户的功能; 3 | 3.删除收款宝支付接口; -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /install/1.1.9/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.新增后台管理背景图片功能; 2 | 2.新增后台管理前台菜单颜色搭配; 3 | 3.新增后台管理前台鼠标特效; -------------------------------------------------------------------------------- /install/1.2.6/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.增加支付回调对支付金额与订单金额匹配判断; 2 | 2.增加收款宝支付宝接口; 3 | 3.可自定义ico图标 -------------------------------------------------------------------------------- /install/1.3.6/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.优化移动端查询结果; 2 | 2.新增卡密异常修复功能; 3 | 3.增加商品详请页显示模版; 4 | 4.增加首页模版; -------------------------------------------------------------------------------- /install/1.4.0/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.增加本周统计; 2 | 2.升级邮箱功能;提供多邮箱配置管理,用于随机取邮箱账户发送邮件; 3 | 3.完善了微信支付; -------------------------------------------------------------------------------- /install/1.0.7/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.完善后台管理,添加批量删除功能,优化后台操作; 2 | 2.添加验证码开关; 3 | 3.完善支付提醒; 4 | 4.还有一些细微的调整; -------------------------------------------------------------------------------- /install/1.1.8/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.完善后台支付接口配置,开放支付名称修改; 2 | 2.后台配置新增前台移动端商品详情显示开关; 3 | 3.后台配置新增自定义订单前缀; -------------------------------------------------------------------------------- /install/1.2.3/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.新增商品分类密码 2 | 2.紧急更新,加强字段过滤;当然,强制过滤后可能会出现部分参数问题;如有问题,请及时反馈给我! 3 | -------------------------------------------------------------------------------- /install/1.3.7/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.完成微信H5支付(不一定可行) 2 | 2.优化移动端; 3 | 3.优化后台首页与邮件队列功能; 4 | 4.增加用户邮件发送开关 -------------------------------------------------------------------------------- /install/1.0.8/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.完善后台管理,添加统计报表功能; 2 | 2.优化并美化支付提示框; 3 | 3.新增官方支付宝即时到账接口; 4 | 4.还有一些细微的调整; -------------------------------------------------------------------------------- /install/1.1.6/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修复登录后购买商品时多参数bug; 2 | 2.优化全站商品、商品分类排序功能; 3 | 3.新增移动设备支付宝跳转,只支持当面付;码支付暂不支持。 -------------------------------------------------------------------------------- /public/res/css/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/css/iconfont.eot -------------------------------------------------------------------------------- /public/res/css/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/css/iconfont.ttf -------------------------------------------------------------------------------- /public/res/css/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/css/iconfont.woff -------------------------------------------------------------------------------- /public/res/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/logo.png -------------------------------------------------------------------------------- /public/res/images/noimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/noimg.jpg -------------------------------------------------------------------------------- /install/1.0.5/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.美化前后台,尤其是后台菜单; 2 | 3 | 2.新增后台批量添加卡密; 4 | 3.修复后台导入卡密时编码兼容问题; 5 | 4.其他各种细节修复与优化; -------------------------------------------------------------------------------- /install/1.3.9/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修复1.3.8以及之前遗留的各类问题; 2 | 2.规范数据库字段; 3 | 3.完善收款宝支付接口; 4 | 4.优化密码分类密码商品的处理; 5 | -------------------------------------------------------------------------------- /public/res/images/avatar/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/0.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/1.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/2.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/3.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/4.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/5.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/6.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/7.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/8.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/9.jpg -------------------------------------------------------------------------------- /public/res/images/pay/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/bank.png -------------------------------------------------------------------------------- /public/res/images/pay/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/load.gif -------------------------------------------------------------------------------- /public/res/images/pay/wxh5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/wxh5.jpg -------------------------------------------------------------------------------- /install/1.1.2/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.555,本次更新主要是修复我犯的错; 2 | 2.有1处地方自作聪明,改了之后体验太差,所以本次版本改回来了; 3 | 3.有1处地方改了之后,忘记更新数据库了; -------------------------------------------------------------------------------- /install/1.2.7/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.优化订单返回金额判断; 2 | 2.增加收款宝同步\异步地址; 3 | 3.优化移动端体验; 4 | 4.增强订单查询安全处理; 5 | 5.增加订单数量限制功能; -------------------------------------------------------------------------------- /public/res/images/admin/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg1.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg10.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg2.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg3.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg4.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg5.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg6.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg7.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg8.jpg -------------------------------------------------------------------------------- /public/res/images/admin/bg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/admin/bg9.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/10.jpg -------------------------------------------------------------------------------- /public/res/images/avatar/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/avatar/11.jpg -------------------------------------------------------------------------------- /public/res/images/pay/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/alipay.jpg -------------------------------------------------------------------------------- /public/res/images/pay/paypal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/paypal.jpg -------------------------------------------------------------------------------- /public/res/images/pay/qqpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/qqpay.jpg -------------------------------------------------------------------------------- /public/res/images/pay/tenpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/tenpay.jpg -------------------------------------------------------------------------------- /public/res/images/pay/weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/weixin.jpg -------------------------------------------------------------------------------- /public/res/images/pay/yzpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/yzpay.jpg -------------------------------------------------------------------------------- /public/res/images/wiki/bt/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/1.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/2.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/3.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/4.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/5.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/6.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/7.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/8.png -------------------------------------------------------------------------------- /public/res/images/wiki/bt/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/bt/9.png -------------------------------------------------------------------------------- /public/res/images/wiki/lnmp/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/lnmp/1.png -------------------------------------------------------------------------------- /public/res/images/wiki/lnmp/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/lnmp/2.png -------------------------------------------------------------------------------- /public/res/images/wiki/lnmp/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/lnmp/3.png -------------------------------------------------------------------------------- /public/res/images/wiki/lnmp/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/lnmp/4.png -------------------------------------------------------------------------------- /public/res/images/pay/alipaywap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/alipaywap.jpg -------------------------------------------------------------------------------- /public/res/images/pay/alipayweb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/alipayweb.jpg -------------------------------------------------------------------------------- /public/res/images/pay/overtime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/overtime.jpg -------------------------------------------------------------------------------- /public/res/images/pay/overtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/overtime.png -------------------------------------------------------------------------------- /public/res/images/pay/supportme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/supportme.jpg -------------------------------------------------------------------------------- /public/res/images/pay/wxnative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/wxnative.jpg -------------------------------------------------------------------------------- /public/res/images/wiki/setup/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/setup/1.png -------------------------------------------------------------------------------- /public/res/images/wiki/setup/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/setup/2.png -------------------------------------------------------------------------------- /public/res/images/wiki/setup/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/setup/3.png -------------------------------------------------------------------------------- /public/res/images/wiki/setup/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/wiki/setup/4.png -------------------------------------------------------------------------------- /public/res/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/font/iconfont.eot -------------------------------------------------------------------------------- /public/res/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /public/res/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/font/iconfont.woff -------------------------------------------------------------------------------- /public/res/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/0.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/1.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/10.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/11.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/12.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/13.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/14.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/15.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/16.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/17.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/18.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/19.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/2.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/20.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/21.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/22.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/23.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/24.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/25.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/26.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/27.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/28.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/29.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/3.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/30.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/31.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/32.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/33.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/34.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/35.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/36.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/37.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/38.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/39.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/4.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/40.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/41.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/42.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/43.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/44.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/45.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/46.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/47.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/48.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/49.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/5.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/50.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/51.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/52.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/53.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/54.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/55.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/56.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/57.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/58.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/59.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/6.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/60.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/61.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/62.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/63.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/64.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/65.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/66.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/67.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/68.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/69.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/7.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/70.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/71.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/8.gif -------------------------------------------------------------------------------- /public/res/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/images/face/9.gif -------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_store 3 | /vendor/ 4 | composer.phar 5 | composer.lock 6 | -------------------------------------------------------------------------------- /install/1.2.4/upgrade.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `t_products_type` ADD `description` VARCHAR(255) NOT NULL COMMENT '分类描述' AFTER `name`; -------------------------------------------------------------------------------- /install/1.3.5/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修改所有支付接口的同步返回地址; 2 | 2.修复csrf验证bug; 3 | 3.新增后台切换二维码服务; 4 | 4.新增后台切换支付订单主题; 5 | 5.完善折扣开关的限制; -------------------------------------------------------------------------------- /public/res/images/pay/weburl-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/weburl-error.png -------------------------------------------------------------------------------- /public/res/images/pay/wechat-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/images/pay/wechat-pay.png -------------------------------------------------------------------------------- /install/1.1.2/upgrade.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `t_email_queue` ADD `isdelete` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未删除,1已删除'; 2 | -------------------------------------------------------------------------------- /install/1.1.7/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.添加资料空白自家提供的微信收款辅助接口; 2 | 2.修复多数量-不限制库存类型购买bug 3 | 3.修复跨版本升级时无法升级的bug; 4 | 4.修复在微信内,支付宝支付仍跳转的bug; -------------------------------------------------------------------------------- /public/templates/choice/images/noimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/templates/choice/images/noimg.jpg -------------------------------------------------------------------------------- /public/templates/shadan/images/noimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/templates/shadan/images/noimg.jpg -------------------------------------------------------------------------------- /install/1.2.1/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.改造数据库,深度优化配置类; 2 | 2.新增登录、密码重置后台开关; 3 | 3.深度优化订单查询,新增浏览器、订单号查询; 4 | 4.强化码支付、收款宝两类支付接口订单处理与超时处理; 5 | -------------------------------------------------------------------------------- /public/templates/hibiscus/images/noimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/templates/hibiscus/images/noimg.jpg -------------------------------------------------------------------------------- /public/templates/hyacinth/images/noimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/templates/hyacinth/images/noimg.jpg -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/1.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/2.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/3.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/4.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/5.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/6.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/7.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/8.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/9.png -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha0.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha1.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha2.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha3.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha4.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha5.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha6.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha7.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha8.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha9.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha9.ttf -------------------------------------------------------------------------------- /install/1.3.1/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.修复1.3.0版本中的数据库异常问题; 2 | 2.新增三种支付接口支持,直接收款码\直接URL地址\直接HTML页面; 3 | 3.完善会员中心我的产品操作,包含查询与删除; 4 | 4.优化完善收款宝支付接口. -------------------------------------------------------------------------------- /install/1.4.1/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.增加昨日统计; 2 | 2.修复微信支付后台金额100倍显示问题; 3 | 3.修复下单时修改数量导致金额显示异常问题; 4 | 4.增加查询方式(联系方式)开关; 5 | 5.优化淘宝模式显示; 6 | -------------------------------------------------------------------------------- /vendor/magicalex/write-ini-file/.coveralls.yml: -------------------------------------------------------------------------------- 1 | coverage_clover: coverage/coverage.xml 2 | json_path: coverage/coveralls-upload.json 3 | -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/10.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/11.png -------------------------------------------------------------------------------- /application/library/Captcha/backgrounds/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/backgrounds/12.png -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha10.ttf -------------------------------------------------------------------------------- /application/library/Captcha/font/captcha11.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/application/library/Captcha/font/captcha11.ttf -------------------------------------------------------------------------------- /install/1.2.5/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.优化商品列表库存不足时购买连接禁用; 2 | 2.关闭后台设置修改备注;新增设置修复数据功能; 3 | 3.新增后台验证码关闭; 4 | 4.优化订单支付页面刷新后,直接查看卡密功能; 5 | 5.新增清空后台已删除卡密功能 -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_1.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_10.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_10.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_11.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_11.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_12.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_12.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_13.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_13.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_14.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_14.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_15.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_15.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_16.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_16.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_17.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_17.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_18.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_18.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_19.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_19.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_2.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_20.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_20.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_21.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_21.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_22.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_22.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_23.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_23.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_24.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_24.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_25.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_25.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_26.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_26.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_27.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_27.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_27.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_28.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_28.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_28.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_29.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_29.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_29.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_3.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_30.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_30.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_31.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_31.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_32.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_32.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_33.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_33.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_33.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_34.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_34.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_34.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_35.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_35.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_36.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_36.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_37.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_37.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_37.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_38.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_38.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_38.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_39.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_39.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_39.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_4.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_40.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_40.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_5.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_6.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_7.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_8.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_8.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_9.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/frame_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/frame_9.png -------------------------------------------------------------------------------- /vendor/paypal/paypal-checkout-sdk/composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/paypal/paypal-checkout-sdk/composer.phar -------------------------------------------------------------------------------- /vendor/paypal/paypal-checkout-sdk/homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/paypal/paypal-checkout-sdk/homepage.jpg -------------------------------------------------------------------------------- /install/1.0.6/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.增强后台json输出兼容性,避免因为错误输入tab等特殊符号导致数据无法输出; 2 | 2.前台移动端完美适配,包含商品页、支付页、查询页、登录页等; 3 | 3.增强后台安全性,用户可进行后台地址修改;具体参考github中的wiki文章; -------------------------------------------------------------------------------- /public/res/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /vendor/braintree/braintreehttp/Rakefile: -------------------------------------------------------------------------------- 1 | spec = Gem::Specification.find_by_name 'releasinator' 2 | load "#{spec.gem_dir}/lib/tasks/releasinator.rake" 3 | -------------------------------------------------------------------------------- /nginx.rewrite: -------------------------------------------------------------------------------- 1 | location / { 2 | if (!-e $request_filename) { 3 | rewrite ^/(.*)$ /index.php?$1 last; 4 | } 5 | } 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/res/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_21_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_21_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_25_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_25_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_29_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_29_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_33_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_33_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_37_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_37_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_41_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_41_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_45_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_45_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_49_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_49_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_53_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_53_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_57_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_57_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_61_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_61_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_65_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_65_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_69_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_69_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_73_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_73_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_77_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_77_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_81_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_81_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_85_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_85_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_89_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_89_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_93_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_93_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_97_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_97_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_21_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_21_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_25_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_25_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_29_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_29_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_33_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_33_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_37_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_37_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_41_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_41_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_45_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_45_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_49_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_49_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_53_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_53_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_57_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_57_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_61_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_61_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_65_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_65_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_69_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_69_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_73_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_73_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_77_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_77_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_81_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_81_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_85_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_85_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_89_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_89_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_93_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_93_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_97_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_97_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_21_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_21_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_25_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_25_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_29_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_29_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_33_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_33_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_37_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_37_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_41_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_41_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_45_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_45_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_49_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_49_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_53_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_53_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_57_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_57_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_61_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_61_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_65_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_65_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_69_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_69_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_73_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_73_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_77_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_77_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_81_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_81_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_85_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_85_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_89_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_89_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_93_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_93_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_97_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_97_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_21_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_21_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_25_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_25_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_29_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_29_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_33_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_33_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_37_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_37_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_41_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_41_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_45_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_45_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_49_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_49_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_53_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_53_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_57_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_57_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_61_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_61_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_65_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_65_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_69_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_69_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_73_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_73_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_77_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_77_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_81_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_81_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_85_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_85_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_89_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_89_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_93_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_93_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_97_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_97_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_21_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_21_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_25_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_25_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_29_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_29_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_33_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_33_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_37_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_37_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_41_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_41_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_45_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_45_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_49_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_49_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_53_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_53_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_57_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_57_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_61_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_61_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_65_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_65_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_69_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_69_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_73_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_73_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_77_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_77_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_81_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_81_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_85_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_85_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_89_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_89_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_93_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_93_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_97_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_97_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_21_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_21_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_25_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_25_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_29_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_29_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_33_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_33_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_37_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_37_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_41_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_41_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_45_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_45_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_49_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_49_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_53_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_53_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_57_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_57_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_61_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_61_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_65_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_65_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_69_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_69_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_73_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_73_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_77_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_77_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_81_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_81_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_85_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_85_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_89_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_89_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_93_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_93_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_97_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_97_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_21_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_21_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_25_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_25_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_29_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_29_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_33_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_33_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_37_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_37_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_41_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_41_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_45_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_45_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_49_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_49_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_53_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_53_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_57_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_57_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_61_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_61_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_65_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_65_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_69_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_69_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_73_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_73_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_77_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_77_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_81_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_81_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_85_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_85_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_89_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_89_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_93_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_93_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_97_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_97_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_21_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_21_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_25_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_25_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_29_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_29_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_33_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_33_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_37_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_37_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_41_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_41_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_45_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_45_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_49_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_49_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_53_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_53_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_57_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_57_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_61_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_61_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_65_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_65_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_69_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_69_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_73_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_73_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_77_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_77_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_81_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_81_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_85_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_85_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_89_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_89_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_93_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_93_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_97_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_97_7.dat -------------------------------------------------------------------------------- /install/1.0.4/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.增加首页广告; 2 | 3 | 2.美化整站,前后台菜单做了选中处理; 4 | 3.商品详情展示做了各种优化css/jq上的,高度,样式,英文字符处理; 5 | 4.新增支付超时处理,请升级后登录后台,进行设置; 6 | 5.增强安全,修复后台上传下载卡密漏洞. -------------------------------------------------------------------------------- /install/1.4.3/upgrade.txt: -------------------------------------------------------------------------------- 1 | 1.增加paypal支付; 2 | 2.找回迷失的选择模版; 3 | 3.改造邮件发送模式,增加为mail/sendmail/smtp三种,同时增加smtp模式下tls加密模式; 4 | 4.增加一个关于我们页面; 5 | 5.修复商品分组隐藏后仍显示商品的bug; -------------------------------------------------------------------------------- /public/res/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /public/res/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /public/res/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/public/res/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_101_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_101_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_105_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_105_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_109_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_109_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_113_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_113_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_117_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_117_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_121_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_121_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_125_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_125_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_129_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_129_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_133_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_133_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_137_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_137_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_141_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_141_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_145_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_145_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_149_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_149_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_153_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_153_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_157_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_157_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_161_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_161_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_165_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_165_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_169_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_169_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_173_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_173_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_0/mask_177_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_0/mask_177_0.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_101_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_101_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_105_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_105_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_109_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_109_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_113_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_113_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_117_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_117_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_121_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_121_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_125_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_125_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_129_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_129_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_133_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_133_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_137_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_137_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_141_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_141_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_145_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_145_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_149_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_149_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_153_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_153_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_157_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_157_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_161_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_161_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_165_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_165_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_169_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_169_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_173_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_173_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_1/mask_177_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_1/mask_177_1.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_101_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_101_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_105_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_105_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_109_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_109_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_113_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_113_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_117_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_117_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_121_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_121_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_125_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_125_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_129_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_129_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_133_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_133_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_137_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_137_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_141_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_141_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_145_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_145_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_149_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_149_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_153_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_153_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_157_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_157_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_161_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_161_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_165_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_165_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_169_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_169_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_173_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_173_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_2/mask_177_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_2/mask_177_2.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_101_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_101_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_105_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_105_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_109_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_109_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_113_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_113_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_117_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_117_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_121_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_121_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_125_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_125_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_129_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_129_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_133_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_133_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_137_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_137_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_141_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_141_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_145_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_145_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_149_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_149_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_153_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_153_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_157_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_157_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_161_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_161_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_165_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_165_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_169_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_169_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_173_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_173_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_3/mask_177_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_3/mask_177_3.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_101_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_101_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_105_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_105_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_109_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_109_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_113_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_113_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_117_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_117_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_121_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_121_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_125_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_125_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_129_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_129_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_133_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_133_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_137_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_137_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_141_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_141_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_145_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_145_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_149_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_149_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_153_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_153_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_157_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_157_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_161_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_161_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_165_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_165_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_169_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_169_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_173_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_173_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_4/mask_177_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_4/mask_177_4.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_101_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_101_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_105_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_105_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_109_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_109_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_113_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_113_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_117_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_117_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_121_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_121_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_125_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_125_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_129_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_129_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_133_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_133_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_137_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_137_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_141_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_141_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_145_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_145_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_149_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_149_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_153_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_153_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_157_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_157_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_161_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_161_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_165_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_165_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_169_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_169_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_173_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_173_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_5/mask_177_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_5/mask_177_5.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_101_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_101_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_105_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_105_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_109_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_109_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_113_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_113_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_117_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_117_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_121_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_121_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_125_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_125_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_129_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_129_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_133_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_133_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_137_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_137_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_141_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_141_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_145_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_145_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_149_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_149_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_153_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_153_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_157_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_157_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_161_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_161_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_165_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_165_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_169_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_169_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_173_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_173_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_6/mask_177_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_6/mask_177_6.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_101_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_101_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_105_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_105_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_109_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_109_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_113_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_113_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_117_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_117_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_121_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_121_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_125_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_125_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_129_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_129_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_133_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_133_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_137_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_137_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_141_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_141_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_145_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_145_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_149_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_149_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_153_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_153_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_157_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_157_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_161_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_161_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_165_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_165_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_169_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_169_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_173_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_173_7.dat -------------------------------------------------------------------------------- /vendor/aferrandini/phpqrcode/cache/mask_7/mask_177_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-pay/zfaka/HEAD/vendor/aferrandini/phpqrcode/cache/mask_7/mask_177_7.dat -------------------------------------------------------------------------------- /vendor/magicalex/write-ini-file/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: recommended 2 | 3 | disabled: 4 | - trailing_comma_in_multiline_array 5 | - phpdoc_var_without_name 6 | -------------------------------------------------------------------------------- /install/1.2.0/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES 2 | (20, 1, 'layerad', '', '弹窗广告', 1, 1453452674); -------------------------------------------------------------------------------- /install/1.2.5/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (23, 1, 'adminyzmswitch', '1', '后台登录验证码开关', 1, 1453452674); -------------------------------------------------------------------------------- /install/1.2.8/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (26, 1, 'discountswitch', '0', '折扣开关', 1, 1453452674); 2 | -------------------------------------------------------------------------------- /install/1.0.7/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (10, 1, 'yzm_switch', '1', '验证码开关(1开,0关)', 1, 1453452674); 2 | -------------------------------------------------------------------------------- /install/1.2.7/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (25, 1, 'limitorderqty', '5', '单笔订单数量限制', 1, 1453452674); 2 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/aferrandini/phpqrcode/lib'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/paypal/paypal-checkout-sdk/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /install/1.0.4/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (9, 1, 'ad', '<image src="/res/images/pay/supportme.jpg">', '购买页默认内容', 1, 1453452674); 2 | ALTER TABLE `t_payment` ADD `overtime` INT NOT NULL DEFAULT '0' COMMENT '支付超时,0是不限制'; -------------------------------------------------------------------------------- /install/1.1.3/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_payment` (`id`, `payment`, `payname`, `payimage`, `alias`, `sign_type`, `app_id`, `app_secret`, `ali_public_key`, `rsa_private_key`, `configure3`, `overtime`, `active`) VALUES(7, '有赞接口', '有赞', '/res/images/pay/yzpay.jpg', 'yzpay', 'RSA2', '', '', '', '', '', 0, 1); 2 | -------------------------------------------------------------------------------- /install/1.1.7/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_payment` (`id`, `payment`, `payname`, `payimage`, `alias`, `sign_type`, `app_id`, `app_secret`, `ali_public_key`, `rsa_private_key`, `configure3`, `overtime`, `active`) VALUES(8, '收款辅助(码支付)', '微信', '/res/images/pay/weixin.jpg', 'zlkbcodepaywx', 'RSA2', '', '', '', '', '', 300, 0); 2 | -------------------------------------------------------------------------------- /install/1.2.9/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_payment` (`id`, `payment`, `payname`, `payimage`, `alias`, `sign_type`, `app_id`, `app_secret`, `ali_public_key`, `rsa_private_key`, `configure3`, `overtime`, `active`) VALUES(10, '收款宝(QQ)', 'QQ', '/res/images/pay/qqpay.jpg', 'zlkbcodepayqq', 'RSA2', '', '', '', '', '', 300, 0); 2 | -------------------------------------------------------------------------------- /vendor/braintree/braintreehttp/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/unit 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /application/model/M_Order.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'order'; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |
警告:
请按照安装要求将程序运行目录修改为public,详细参考:ZFAKA GitHub 系统部署
-------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - 7.0 9 | 10 | before_script: 11 | - composer install 12 | 13 | script: 14 | - mkdir -p build/logs 15 | - php vendor/bin/phpunit -c phpunit.xml 16 | 17 | after_script: 18 | - php vendor/bin/coveralls -v -------------------------------------------------------------------------------- /install/1.1.4/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES 2 | (12, 1, 'index_tpl', 'default', '首页显示模式,筛选(default)|列表(list)', 1, 1453452674), 3 | (13, 1, 'logo', '/res/images/logo.png', 'LOGO地址,默认:/res/images/logo.png', 1, 1453452674), 4 | (14, 1, 'tongji', '/', '统计脚本', 1, 1453452674); 5 | -------------------------------------------------------------------------------- /application/model/M_Help.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'help'; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /application/model/M_Products.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'products'; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /vendor/riverslei/payment/src/CacertFile/old_alipay_public_key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnxj/9qwVfgoUh/y2W89L6BkRA 3 | FljhNhgPdyPuBV64bfQNN1PjbCzkIM6qRdKBoLPXmKKMiFYnkd6rAoprih3/PrQE 4 | B/VsW8OoM8fxn67UDYuyBTqA23MML9q1+ilIZwBC2AQ2UBVOrFXfFl75p6/B5Ksi 5 | NG9zpgmLCUYuLkxpLQIDAQAB 6 | -----END PUBLIC KEY----- -------------------------------------------------------------------------------- /vendor/braintree/braintreehttp/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribute to the Braintree PHP HttpClient 2 | 3 | ### *Pull requests are welcome!* 4 | 5 | General Guidelines 6 | ------------------ 7 | 8 | * **Code style.** Please follow local code style. Ask if you're unsure. 9 | * **No warnings.** All generated code must compile without warnings. 10 | 11 | -------------------------------------------------------------------------------- /vendor/magicalex/write-ini-file/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | coverage 4 | index.php 5 | 6 | # test file ini 7 | file.ini 8 | tests/file_ini/testCreate2.ini 9 | tests/file_ini/testUpdate2.ini 10 | tests/file_ini/testErase2.ini 11 | tests/file_ini/testAdd2.ini 12 | tests/file_ini/testRm2.ini 13 | tests/file_ini/testEscapeCharacters2.ini 14 | -------------------------------------------------------------------------------- /vendor/magicalex/write-ini-file/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | - 7.1 7 | - 7.2 8 | 9 | before_script: 10 | - composer install 11 | 12 | script: 13 | - php vendor/bin/phpunit 14 | 15 | after_success: 16 | - travis_retry php vendor/bin/coveralls --verbose 17 | 18 | notifications: 19 | email: false 20 | -------------------------------------------------------------------------------- /application/model/M_Ticket.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'ticket'; 15 | parent::__construct(); 16 | } 17 | 18 | 19 | } -------------------------------------------------------------------------------- /application/model/M_Default.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.$table; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /application/model/M_Email_queue.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'email_queue'; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/PromisorInterface.php: -------------------------------------------------------------------------------- 1 | headers["Accept-Encoding"] = "gzip"; 13 | } 14 | } -------------------------------------------------------------------------------- /application/model/M_Email_code.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'email_code'; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /application/model/M_Products_card.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'products_card'; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /vendor/braintree/braintreehttp/lib/BraintreeHttp/IOException.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'config_cat'; 15 | parent::__construct(); 16 | } 17 | } -------------------------------------------------------------------------------- /application/model/M_User_login_logs.php: -------------------------------------------------------------------------------- 1 | table = TB_PREFIX.'user_login_logs'; 15 | parent::__construct(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /install/1.0.2/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_payment` (`id`, `payment`, `payname`, `payimage`, `alias`, `sign_type`, `app_id`, `app_secret`, `ali_public_key`, `rsa_private_key`, `active`) VALUES 2 | (3, '码支付-QQ扫码支付', '手机QQ', '/res/images/pay/qqpay.jpg', 'codepayqq', 'RSA2', '', '', '', '', 0), 3 | (4, '码支付-微信扫码支付', '微信', '/res/images/pay/weixin.jpg', 'codepaywx', 'RSA2', '', '', '', '', 0); -------------------------------------------------------------------------------- /install/1.3.5/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (27, 1, 'qrserver', '/product/order/showqr/?url=', '生成二维码的服务地址,默认请填写:/product/order/showqr/?url=', 1, 1453452674); 2 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (28, 1, 'paysubjectswitch', '0', '订单说明显示:商品名,订单号', 1, 1453452674); -------------------------------------------------------------------------------- /application/library/Safe/MyInt.php: -------------------------------------------------------------------------------- 1 | value = preg_replace('/[^\.0123456789]/s', '',$this->value); 15 | } 16 | } -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /*?*from=* 3 | Disallow: /?* 4 | Disallow: /View/ 5 | Disallow: /view/ 6 | Disallow: /app/ 7 | Disallow: /api/ 8 | Disallow: /views/ 9 | Disallow: /html/ 10 | Disallow: /admin/ 11 | Disallow: /wp-admin/ 12 | Disallow: /UserFiles/ 13 | Disallow: /images/ 14 | Disallow: /member/ 15 | Disallow: /install/ 16 | Disallow: /res/ 17 | -------------------------------------------------------------------------------- /public/cli.php: -------------------------------------------------------------------------------- 1 | bootstrap()->getDispatcher()->dispatch(new \Yaf\Request\Simple()); -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 支付演示demo 6 | 7 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /vendor/riverslei/payment/autoload.php: -------------------------------------------------------------------------------- 1 | getView()->assign($data); 20 | } 21 | } -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- 1 | PSR Http Message 2 | ================ 3 | 4 | This repository holds all interfaces/classes/traits related to 5 | [PSR-7](http://www.php-fig.org/psr/psr-7/). 6 | 7 | Note that this is not a HTTP message implementation of its own. It is merely an 8 | interface that describes a HTTP message. See the specification for more details. 9 | 10 | Usage 11 | ----- 12 | 13 | We'll certainly need some stuff in here. -------------------------------------------------------------------------------- /vendor/braintree/braintreehttp/lib/BraintreeHttp/Environment.php: -------------------------------------------------------------------------------- 1 | getDispatcher()->throwException(TRUE); 12 | $app->bootstrap()->run(); -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/AggregateException.php: -------------------------------------------------------------------------------- 1 | 2 |

Powered by ZFAKA

3 | 4 | 5 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ralouphie/getallheaders", 3 | "description": "A polyfill for getallheaders.", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "Ralph Khattar", 8 | "email": "ralph.khattar@gmail.com" 9 | } 10 | ], 11 | "require": { 12 | "php": ">=5.3" 13 | }, 14 | "require-dev": { 15 | "phpunit/phpunit": "~3.7.0", 16 | "satooshi/php-coveralls": ">=1.0" 17 | }, 18 | "autoload": { 19 | "files": ["src/getallheaders.php"] 20 | } 21 | } -------------------------------------------------------------------------------- /application/modules/Admin/views/common/report-nav.html: -------------------------------------------------------------------------------- 1 | 6 |
7 | 8 |
9 |
10 |
11 | 12 |
13 |
-------------------------------------------------------------------------------- /application/modules/Admin/views/common/user-nav.html: -------------------------------------------------------------------------------- 1 | 6 |
7 | 8 |
9 |
10 |
11 | 12 |
13 |
-------------------------------------------------------------------------------- /install/1.2.6/upgrade.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `t_payment` (`id`, `payment`, `payname`, `payimage`, `alias`, `sign_type`, `app_id`, `app_secret`, `ali_public_key`, `rsa_private_key`, `configure3`, `overtime`, `active`) VALUES(9, '收款宝(支付宝)', '支付宝', '/res/images/pay/alipay.jpg', 'zlkbcodepayalipay', 'RSA2', '', '', '', '', '', 300, 0); 2 | UPDATE `t_payment` SET `payment` = '收款宝(微信)' WHERE `id` = 8; 3 | INSERT INTO `t_config` (`id`, `catid`, `name`, `value`, `tag`, `lock`, `updatetime`) VALUES (24, 1, 'shortcuticon', '', 'ICO图标,格式必须是png或者ico或者gif', 1, 1453452674); 4 | -------------------------------------------------------------------------------- /vendor/magicalex/write-ini-file/tests/file_ini/testAdd1.ini: -------------------------------------------------------------------------------- 1 | [section 1] 2 | foo = "string" 3 | bool_true = 1 4 | bool_false = 0 5 | int_true = 1 6 | int_false = 0 7 | int = 10 8 | float = 10.3 9 | foo_array[0] = "string" 10 | foo_array[1] = 10.3 11 | foo_array[2] = 1 12 | foo_array[3] = 0 13 | 14 | [section 2] 15 | foo = "string" 16 | var = "string string" 17 | bool_true_string = "true" 18 | int_true_string = 1 19 | int_false_string = 0 20 | float_string = "10.5L" 21 | empty_string = "" 22 | 23 | [section 3] 24 | foo = "bar" 25 | var_float = 10.5 26 | --------------------------------------------------------------------------------