├── .babelrc ├── .circleci └── config.yml ├── .codacy.yml ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── dependabot.yml ├── .gitignore ├── .postcssrc.js ├── .styleci.yml ├── .travis.yml ├── Dockerfile-fpm ├── LICENSE ├── README.md ├── _ide_helper.php ├── app ├── API2 │ ├── Controllers │ │ ├── Comment.php │ │ ├── Controller.php │ │ ├── Feed │ │ │ ├── Topic.php │ │ │ ├── TopicFeed.php │ │ │ ├── TopicFollow.php │ │ │ ├── TopicParticipant.php │ │ │ └── TopicReport.php │ │ ├── NewsPostController.php │ │ ├── NotificationController.php │ │ ├── User │ │ │ ├── AbilityController.php │ │ │ └── Message │ │ │ │ └── At.php │ │ └── UserCountsController.php │ ├── Requests │ │ ├── Feed │ │ │ ├── CreateTopic.php │ │ │ ├── EditTopic.php │ │ │ ├── ListFeedsForATopic.php │ │ │ ├── ListParticipantsForATopic.php │ │ │ ├── ReportATopic.php │ │ │ └── TopicIndex.php │ │ ├── ListAllComments.php │ │ ├── Request.php │ │ └── User │ │ │ └── Message │ │ │ └── ListAtMessageLine.php │ └── Resources │ │ ├── Ability.php │ │ ├── Comment.php │ │ ├── Feed │ │ ├── Topic.php │ │ └── TopicParticipantCollection.php │ │ ├── Notification.php │ │ ├── User │ │ └── Message │ │ │ └── AtMessage.php │ │ └── UserCountsResource.php ├── Admin │ ├── Controllers │ │ ├── AboutUsController.php │ │ ├── Controller.php │ │ ├── FileStorage │ │ │ ├── AliyunOSSFilesystem.php │ │ │ ├── DefaultFilesystem.php │ │ │ ├── FileSize.php │ │ │ ├── ImageDimension.php │ │ │ ├── LocalFilesystem.php │ │ │ ├── MimeType.php │ │ │ └── PublicChannel.php │ │ ├── ImHelperUserController.php │ │ ├── Setting │ │ │ ├── Easemob.php │ │ │ ├── QQ.php │ │ │ ├── Security.php │ │ │ ├── WeChat.php │ │ │ ├── WeChatMp.php │ │ │ └── Weibo.php │ │ └── UserTrashedController.php │ ├── Requests │ │ ├── SetEasemob.php │ │ ├── SetQQConfigure.php │ │ ├── SetWeChatConfigure.php │ │ ├── SetWeChatMpConfigure.php │ │ ├── SetWeiboConfigure.php │ │ └── UpdateImHelperUserRequest.php │ └── Resources │ │ └── TrashedUserResource.php ├── AppInterface.php ├── Application.php ├── AtMessage │ ├── AtMessageHelperTrait.php │ ├── Message.php │ ├── MessageInterface.php │ ├── ResourceInterface.php │ ├── ResourceManager.php │ ├── ResourceManagerInterface.php │ └── Resources │ │ ├── Comment.php │ │ └── Feed.php ├── Auth │ └── JWTAuthToken.php ├── Bootstrap │ └── LoadConfiguration.php ├── CacheNames.php ├── Cdn │ ├── Adapter │ │ ├── AliOss.php │ │ ├── Filesystem.php │ │ └── Qiniu.php │ ├── Refresh.php │ └── UrlManager.php ├── Concerns │ └── FindMarkdownFileTrait.php ├── Console │ ├── Commands │ │ ├── AppVersionCommand.php │ │ ├── PackageCreateCommand.php │ │ └── PackageHandlerCommand.php │ └── Kernel.php ├── Contracts │ ├── Cdn │ │ ├── UrlFactory.php │ │ └── UrlGenerator.php │ └── Model │ │ ├── FetchComment.php │ │ └── UserAbility.php ├── EaseMobIM │ ├── Controllers │ │ ├── .gitkeep │ │ ├── EaseMobController.php │ │ └── GroupController.php │ ├── Middleware │ │ └── .gitkeep │ └── Requests │ │ ├── .gitkeep │ │ ├── CheckGroup.php │ │ ├── GroupId.php │ │ ├── GroupMember.php │ │ └── UpdateGroup.php ├── Exceptions │ ├── Handler.php │ └── ValidationException.php ├── FileStorage │ ├── ChannelManager.php │ ├── Channels │ │ ├── AbstractChannel.php │ │ ├── ChannelInterface.php │ │ └── PublicChannel.php │ ├── Exceptions │ │ ├── NotAllowUploadMimeTypeException.php │ │ └── ParseResourceException.php │ ├── FileMetaAbstract.php │ ├── FileMetaInterface.php │ ├── FilesystemManager.php │ ├── Filesystems │ │ ├── AliyunOss │ │ │ └── FileMeta.php │ │ ├── AliyunOssFilesystem.php │ │ ├── FilesystemInterface.php │ │ ├── Local │ │ │ ├── FileMeta.php │ │ │ └── RuleParser.php │ │ └── LocalFilesystem.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Callback.php │ │ │ ├── CreateTask.php │ │ │ └── Local.php │ │ └── MakeRoutes.php │ ├── ImageDimension.php │ ├── ImageDimensionInterface.php │ ├── Pay │ │ └── PayInterface.php │ ├── Providers │ │ └── AppServiceProvider.php │ ├── Resource.php │ ├── ResourceInterface.php │ ├── Storage.php │ ├── StorageInterface.php │ ├── Task.php │ ├── TaskInterface.php │ ├── Traits │ │ ├── EloquentAttributeTrait.php │ │ └── HasImageTrait.php │ ├── Validators │ │ ├── AbstractValidator.php │ │ ├── CreateTaskValidator.php │ │ ├── Rulers │ │ │ ├── FileStorageRuler.php │ │ │ ├── RulerInterface.php │ │ │ └── ValidatorRegister.php │ │ └── ValidatorInterface.php │ └── design-configuration.php ├── Http │ ├── Controllers │ │ ├── APIs │ │ │ └── V2 │ │ │ │ ├── AdvertisingController.php │ │ │ │ ├── AuthController.php │ │ │ │ ├── BootstrappersController.php │ │ │ │ ├── Controller.php │ │ │ │ ├── CurrencyApplePayController.php │ │ │ │ ├── CurrencyCashController.php │ │ │ │ ├── CurrencyPayController.php │ │ │ │ ├── CurrencyRechargeController.php │ │ │ │ ├── CurrentUserController.php │ │ │ │ ├── FilesController.php │ │ │ │ ├── FindUserController.php │ │ │ │ ├── LocationController.php │ │ │ │ ├── NewUserRewardController.php │ │ │ │ ├── NewWalletCashController.php │ │ │ │ ├── NewWalletRechargeController.php │ │ │ │ ├── PayController.php │ │ │ │ ├── PingPlusPlusChargeWebHooks.php │ │ │ │ ├── PurchaseController.php │ │ │ │ ├── RankController.php │ │ │ │ ├── ReportController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ ├── SystemController.php │ │ │ │ ├── TagController.php │ │ │ │ ├── TagUserController.php │ │ │ │ ├── TransferController.php │ │ │ │ ├── UserBlacklistController.php │ │ │ │ ├── UserCertificationController.php │ │ │ │ ├── UserCommentController.php │ │ │ │ ├── UserController.php │ │ │ │ ├── UserEmailController.php │ │ │ │ ├── UserFollowController.php │ │ │ │ ├── UserLikeController.php │ │ │ │ ├── UserNotificationController.php │ │ │ │ ├── UserPhoneController.php │ │ │ │ ├── UserRewardController.php │ │ │ │ ├── UserUnreadCountController.php │ │ │ │ ├── VerifyCodeController.php │ │ │ │ ├── WalletCashController.php │ │ │ │ ├── WalletChargeController.php │ │ │ │ ├── WalletConfigController.php │ │ │ │ ├── WalletRechargeAlipayController.php │ │ │ │ ├── WalletRechargeApplePayController.php │ │ │ │ └── WalletRechargeController.php │ │ ├── Admin │ │ │ ├── AdvertisingController.php │ │ │ ├── AuxiliaryController.php │ │ │ ├── CdnController.php │ │ │ ├── CertificationCategoryController.php │ │ │ ├── CertificationController.php │ │ │ ├── ConversationController.php │ │ │ ├── CorsController.php │ │ │ ├── CurrencyAppleController.php │ │ │ ├── CurrencyCashController.php │ │ │ ├── CurrencyController.php │ │ │ ├── FileController.php │ │ │ ├── GoldRuleController.php │ │ │ ├── GoldTypeController.php │ │ │ ├── HomeController.php │ │ │ ├── NewPaySettingController.php │ │ │ ├── NewWalletController.php │ │ │ ├── ReportController.php │ │ │ ├── RewardController.php │ │ │ ├── RoleController.php │ │ │ ├── SensitiveController.php │ │ │ ├── SiteController.php │ │ │ ├── SmsController.php │ │ │ ├── SystemController.php │ │ │ ├── TagController.php │ │ │ ├── UserController.php │ │ │ ├── WalletCashController.php │ │ │ ├── WalletCashSettingController.php │ │ │ ├── WalletChargeController.php │ │ │ ├── WalletLabelController.php │ │ │ ├── WalletPingPlusPlusController.php │ │ │ ├── WalletRatioController.php │ │ │ ├── WalletRechargeTypeController.php │ │ │ ├── WalletRuleController.php │ │ │ ├── WalletStatisticsController.php │ │ │ ├── WalletSwitchController.php │ │ │ └── WebClientsController.php │ │ ├── Auth │ │ │ ├── LoginController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ ├── DevelopController.php │ │ └── HomeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── DisposeSensitive.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SensitiveOperation.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── UserAbility.php │ │ ├── VerifyCsrfToken.php │ │ └── VerifyUserPassword.php │ └── Requests │ │ ├── API2 │ │ ├── CheckRegisterParameter.php │ │ ├── CreateRegisterVerifyCodeRequest.php │ │ ├── NewStoreUserWallerCashPost.php │ │ ├── NewStoreWalletRecharge.php │ │ ├── StoreCurrencyAppleIAPRecharge.php │ │ ├── StoreCurrencyCash.php │ │ ├── StoreCurrencyRecharge.php │ │ ├── StoreTag.php │ │ ├── StoreTransform.php │ │ ├── StoreUploadFile.php │ │ ├── StoreUserPost.php │ │ ├── StoreUserWallerCashPost.php │ │ ├── StoreVerifyCode.php │ │ ├── StoreWalletRecharge.php │ │ ├── Transfer.php │ │ ├── UpdateTag.php │ │ └── UserCertification.php │ │ └── Admin │ │ ├── CreateSensitive.php │ │ ├── UpdateCorsRequest.php │ │ ├── UpdateSensitive.php │ │ └── UpdateWebClientRequest.php ├── Jobs │ └── PushMessage.php ├── Listeners │ └── VerificationCode.php ├── Models │ ├── Ability.php │ ├── Advertising.php │ ├── AdvertisingSpace.php │ ├── Area.php │ ├── BlackList.php │ ├── Certification.php │ ├── CertificationCategory.php │ ├── Collection.php │ ├── Comment.php │ ├── CommonConfig.php │ ├── Concerns │ │ ├── HasAvatar.php │ │ ├── Macroable.php │ │ ├── UserHasAbility.php │ │ └── UserHasNotifiable.php │ ├── Conversation.php │ ├── Currency.php │ ├── CurrencyCommodity.php │ ├── CurrencyOrder.php │ ├── CurrencyType.php │ ├── CurrencyTypeTransform.php │ ├── Famous.php │ ├── FeedTopic.php │ ├── FeedTopicLink.php │ ├── FeedTopicUserLink.php │ ├── File.php │ ├── FileWith.php │ ├── GoldRule.php │ ├── GoldType.php │ ├── ImGroup.php │ ├── Like.php │ ├── NativePayOrder.php │ ├── NewWallet.php │ ├── PaidNode.php │ ├── PaidNodeUser.php │ ├── Relations │ │ ├── PaidNodeHasUser.php │ │ ├── UserHasBlackList.php │ │ ├── UserHasComment.php │ │ ├── UserHasCurrency.php │ │ ├── UserHasFilesWith.php │ │ ├── UserHasFollow.php │ │ ├── UserHasLike.php │ │ ├── UserHasNewWallet.php │ │ ├── UserHasReward.php │ │ ├── UserHasRole.php │ │ ├── UserHasWallet.php │ │ ├── UserHasWalletCash.php │ │ └── UserHasWalletCharge.php │ ├── Report.php │ ├── Reward.php │ ├── Role.php │ ├── RoleUser.php │ ├── Sensitive.php │ ├── Setting.php │ ├── Tag.php │ ├── TagCategory.php │ ├── Taggable.php │ ├── User.php │ ├── UserCount.php │ ├── UserExtra.php │ ├── UserFollow.php │ ├── UserRecommended.php │ ├── UserUnreadCount.php │ ├── VerificationCode.php │ ├── Wallet.php │ ├── WalletCash.php │ ├── WalletCharge.php │ └── WalletOrder.php ├── Notifications │ ├── At.php │ ├── Channels │ │ ├── JPushChannel.php │ │ └── SmsChannel.php │ ├── Comment.php │ ├── Follow.php │ ├── Like.php │ ├── Messages │ │ ├── UserNotificationMessage.php │ │ └── VerificationCodeMessage.php │ ├── System.php │ ├── UserNotification.php │ └── VerificationCode.php ├── Observers │ ├── CommentObserver.php │ └── UserObserver.php ├── Packages │ ├── Currency │ │ ├── Order.php │ │ ├── Process.php │ │ └── Processes │ │ │ ├── AppStorePay.php │ │ │ ├── Cash.php │ │ │ ├── Common.php │ │ │ ├── Recharge.php │ │ │ └── User.php │ └── Wallet │ │ ├── Order.php │ │ ├── TargetTypeManager.php │ │ ├── TargetTypes │ │ ├── RechargeTarget.php │ │ ├── RewardTarget.php │ │ ├── Target.php │ │ ├── TransformCurrencyTarget.php │ │ ├── UserTarget.php │ │ └── WidthdrawTarget.php │ │ ├── TypeManager.php │ │ ├── Types │ │ ├── RechargeType.php │ │ ├── RewardType.php │ │ ├── TransformCurrencyType.php │ │ ├── Type.php │ │ ├── UserType.php │ │ └── WidthdrawType.php │ │ └── Wallet.php ├── Policies │ ├── Feed │ │ └── Topic.php │ └── NewsPostPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EloquentServiceProvider.php │ ├── EventServiceProvider.php │ ├── NotificationServiceProvider.php │ ├── RouteServiceProvider.php │ └── TelescopeServiceProvider.php ├── Services │ ├── Push.php │ ├── UserAbility.php │ └── Wallet │ │ └── Charge.php ├── Support │ ├── BootstrapAPIsEventer.php │ ├── CdnUrlGenerator.php │ ├── Configuration.php │ ├── ManageRepository.php │ ├── PackageHandler.php │ ├── PinnedsNotificationEventer.php │ └── Setting.php ├── Types │ └── Models.php ├── Utils │ ├── DateTimeToIso8601ZuluString.php │ ├── Markdown.php │ └── Path.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── codecov.yml ├── composer.json ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cdn.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── http.php ├── image.php ├── jwt.php ├── logging.php ├── mail.php ├── paid.php ├── queue.php ├── services.php ├── session.php ├── sms.php ├── telescope.php └── view.php ├── database ├── .gitignore ├── factories │ └── Zhiyi │ │ └── Plus │ │ └── Models │ │ ├── AbilityFactory.php │ │ ├── AdvertisingFactory.php │ │ ├── CashFactory.php │ │ ├── CommentFactory.php │ │ ├── FileFactory.php │ │ ├── LikeFactory.php │ │ ├── ModelUserCountFactory.php │ │ ├── OrderFactory.php │ │ ├── RoleFactory.php │ │ ├── SensitiveFactory.php │ │ ├── TagCategoryFactory.php │ │ ├── TagFactory.php │ │ ├── UserFactory.php │ │ └── VerificationCodeFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_01_16_095535_create_areas.php │ ├── 2017_02_13_031150_roles.php │ ├── 2017_02_13_031309_role_user.php │ ├── 2017_02_28_031017_common_configs.php │ ├── 2017_03_01_030155_conversations.php │ ├── 2017_03_22_035404_create_comments_table.php │ ├── 2017_05_11_095446_create_jobs_table.php │ ├── 2017_05_22_043802_wallets.php │ ├── 2017_05_22_082111_user_follow.php │ ├── 2017_06_01_023919_wallet_cashes.php │ ├── 2017_06_06_094947_wallet_charges.php │ ├── 2017_06_15_070414_create_files_table.php │ ├── 2017_06_15_071246_create_file_withs_table.php │ ├── 2017_06_20_094159_create_paid_nodes_table.php │ ├── 2017_06_20_094415_create_paid_node_users_table.php │ ├── 2017_07_06_060700_create_notifications_table.php │ ├── 2017_07_06_080046_create_verification_codes_table.php │ ├── 2017_07_12_032825_create_likes_table.php │ ├── 2017_07_15_071001_create_tags_table.php │ ├── 2017_07_15_071236_create_taggables_table.php │ ├── 2017_07_15_093442_create_tag_categories_table.php │ ├── 2017_07_15_100116_create_user_extras_table.php │ ├── 2017_07_18_020155_create_rewards_table.php │ ├── 2017_07_22_020520_create_certifications_table.php │ ├── 2017_07_22_033147_create_certification_categories_table.php │ ├── 2017_07_26_074631_advertising_space.php │ ├── 2017_07_26_090606_advertising.php │ ├── 2017_08_04_033748_create_collections_table.php │ ├── 2017_08_09_095329_create_users_recommended_table.php │ ├── 2017_08_24_082211_create_abilities_table.php │ ├── 2017_08_24_082439_create_ability_role_table.php │ ├── 2017_09_07_090639_create-famous-users-table.php │ ├── 2017_09_09_062343_create_gold_types_table.php │ ├── 2017_09_09_073205_create_gold_rules_table.php │ ├── 2017_10_18_060656_user_unread_counts.php │ ├── 2017_11_08_054602_create_sensitives_table.php │ ├── 2017_12_06_060001_create_reports_table.php │ ├── 2017_12_18_100301_create_im_group_table.php │ ├── 2017_12_26_083008_create_wallet_table.php │ ├── 2017_12_26_084545_create_wallet_orders_table.php │ ├── 2018_01_05_093306_create_currencies_table.php │ ├── 2018_01_05_093323_create_currency_types_table.php │ ├── 2018_01_05_095941_create_currency_type_transforms_table.php │ ├── 2018_01_08_021501_create_currency_commodities_table.php │ ├── 2018_01_09_070152_create_currency_orders_table.php │ ├── 2018_04_08_021150_create_blacklist.php │ ├── 2018_04_13_015340_create_user_counts_table.php │ ├── 2018_05_14_013451_create_native_pay_orders_table.php │ ├── 2018_07_23_024040_create_feed_topics_table.php │ ├── 2018_07_23_025349_create_feed_topic_user_links_table.php │ ├── 2018_07_23_032150_create_feed_topic_links_table.php │ ├── 2018_08_07_080904_create_settings_table.php │ ├── 2019_06_28_060148_update_user_extrs_table.php │ ├── 2019_06_28_062141_update_feed_videos_table.php │ ├── 2019_06_28_062659_update_file_withs_table.php │ ├── 2019_06_28_080848_update_blacklist_table.php │ └── 2019_08_19_000000_create_failed_jobs_table.php └── seeders │ ├── AbilitySeeder.php │ ├── AdvertisingSpaceTableSeeder.php │ ├── AreasTableSeeder.php │ ├── CertificationCategoryTableSeeder.php │ ├── CurrencyTypeSeeder.php │ ├── DatabaseSeeder.php │ ├── GoldTypeSeeder.php │ ├── PackagesSeeder.php │ ├── RoleSeeder.php │ ├── SettingsTableSeeder.php │ ├── TagsTableSeeder.php │ └── UsersTableSeeder.php ├── docker-entrypoint.sh ├── docs ├── guide │ └── upgrade │ │ └── 1.9-to-2.0.md └── merge-laravel-master-branch-to-plus-master-guide.md ├── package.json ├── packages ├── .gitignore ├── slimkit-plus-appversion │ ├── .babelrc │ ├── .gitignore │ ├── .styleci.yml │ ├── README.md │ ├── admin │ │ ├── App.vue │ │ ├── component │ │ │ ├── Add.vue │ │ │ ├── Home.vue │ │ │ └── download-manage.vue │ │ ├── index.js │ │ ├── router │ │ │ ├── index.js │ │ │ └── routers.js │ │ └── utils │ │ │ └── request.js │ ├── assets │ │ ├── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ ├── js │ │ │ └── main.js │ │ └── mix-manifest.json │ ├── composer.json │ ├── config │ │ └── plus-appversion.php │ ├── database │ │ ├── migrations │ │ │ ├── .gitkeep │ │ │ └── 2017_09_12_025510_create_client_versions_table.php │ │ └── seeds │ │ │ └── DatabaseSeeder.php │ ├── package.json │ ├── resource │ │ ├── lang │ │ │ ├── en │ │ │ │ └── message.php │ │ │ └── zh-CN │ │ │ │ └── messages.php │ │ ├── stubs │ │ │ ├── model │ │ │ └── seeder │ │ └── views │ │ │ ├── admin.blade.php │ │ │ └── welcome.blade.php │ ├── router.php │ ├── routes │ │ ├── admin.php │ │ ├── api.php │ │ └── web.php │ ├── src │ │ ├── API │ │ │ ├── Controllers │ │ │ │ └── ClientVersionController.php │ │ │ ├── Middleware │ │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ │ └── .gitkeep │ │ ├── Admin │ │ │ ├── Controllers │ │ │ │ ├── DownloadController.php │ │ │ │ └── HomeController.php │ │ │ ├── Middleware │ │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ │ ├── .gitkeep │ │ │ │ ├── ApkUpload.php │ │ │ │ └── StoreClientVersion.php │ │ ├── Handlers │ │ │ └── DevPackageHandler.php │ │ ├── Models │ │ │ ├── .gitkeep │ │ │ └── ClientVersion.php │ │ ├── Providers │ │ │ ├── AppServiceProvider.php │ │ │ ├── ModelServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ ├── Support │ │ │ └── Path.php │ │ └── Web │ │ │ ├── Controllers │ │ │ └── HomeController.php │ │ │ ├── Middleware │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ └── .gitkeep │ └── webpack.config.babel.js ├── slimkit-plus-around-amap │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── .gitkeep │ ├── composer.json │ ├── database │ │ ├── migrations │ │ │ ├── .gitkeep │ │ │ └── 2017_08_16_132635_create_around_amap_table.php │ │ └── seeds │ │ │ └── .gitkeep │ ├── resource │ │ ├── lang │ │ │ └── zh-CN │ │ │ │ └── messages.php │ │ └── views │ │ │ └── admin.blade.php │ ├── router.php │ ├── routes │ │ ├── admin.php │ │ ├── api.php │ │ └── web.php │ └── src │ │ ├── API │ │ ├── Controllers │ │ │ └── HomeController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ │ ├── Admin │ │ ├── Controllers │ │ │ └── HomeController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── Request.php │ │ │ └── StoreAmapRequest.php │ │ ├── Models │ │ ├── .gitkeep │ │ └── AroundAmap.php │ │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── ModelServiceProvider.php │ │ └── RouteServiceProvider.php │ │ └── Web │ │ ├── Controllers │ │ └── HomeController.php │ │ ├── Middleware │ │ └── .gitkeep │ │ └── Requests │ │ └── .gitkeep ├── slimkit-plus-checkin │ ├── .gitignore │ ├── .styleci.yml │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── .gitkeep │ │ └── icon.svg │ ├── composer.json │ ├── database │ │ ├── migrations │ │ │ ├── 2017_08_10_031646_create_checkin_logs_table.php │ │ │ └── 2017_08_10_034304_append_user_check_in_extras_table.php │ │ └── seeds │ │ │ ├── AbilitySeeder.php │ │ │ ├── DatabaseSeeder.php │ │ │ └── SettingsTableSeeder.php │ ├── resource │ │ ├── lang │ │ │ └── zh-CN │ │ │ │ ├── admin.php │ │ │ │ ├── app.php │ │ │ │ └── messages.php │ │ └── views │ │ │ └── admin.blade.php │ ├── router.php │ ├── routes │ │ ├── admin.php │ │ ├── api.php │ │ └── web.php │ ├── src │ │ ├── API │ │ │ ├── Controllers │ │ │ │ ├── CheckInController.php │ │ │ │ ├── Controller.php │ │ │ │ └── RanksController.php │ │ │ ├── Middleware │ │ │ │ └── CheckInSwitch.php │ │ │ └── Requests │ │ │ │ └── .gitkeep │ │ ├── Admin │ │ │ ├── Controllers │ │ │ │ └── HomeController.php │ │ │ ├── Middleware │ │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ │ ├── .gitkeep │ │ │ │ └── StoreConfig.php │ │ ├── CacheName │ │ │ └── CheckInCacheName.php │ │ ├── Models │ │ │ └── CheckinLog.php │ │ ├── Policies │ │ │ └── CheckInPolicy.php │ │ ├── Providers │ │ │ ├── AppServiceProvider.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── ModelServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ └── Web │ │ │ ├── Controllers │ │ │ └── HomeController.php │ │ │ ├── Middleware │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ └── .gitkeep │ └── tests │ │ └── Feature │ │ └── API2 │ │ ├── CheckinRanksTest.php │ │ ├── CheckinTest.php │ │ └── UserCheckinTest.php ├── slimkit-plus-feed │ ├── .babelrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── admin │ │ ├── App.js │ │ ├── api │ │ │ ├── feed.js │ │ │ ├── topic.js │ │ │ └── user.js │ │ ├── components │ │ │ ├── Comment.js │ │ │ ├── Home.js │ │ │ ├── PayControl.js │ │ │ └── common │ │ │ │ ├── Breadcrumb.js │ │ │ │ ├── ContentHeaderBar.jsx │ │ │ │ ├── ContentHeaderBar.styles.js │ │ │ │ ├── Snackbar.jsx │ │ │ │ ├── autocomplete.jsx │ │ │ │ └── autocomplete.style.js │ │ ├── main.js │ │ ├── pages │ │ │ ├── feed │ │ │ │ ├── index.jsx │ │ │ │ ├── index.style.js │ │ │ │ ├── index.view.jsx │ │ │ │ └── modules │ │ │ │ │ ├── header-bar.jsx │ │ │ │ │ ├── header-bar.style.js │ │ │ │ │ ├── pinned-modal.jsx │ │ │ │ │ ├── pinned-modal │ │ │ │ │ ├── index.js │ │ │ │ │ ├── modal-header-bar.jsx │ │ │ │ │ ├── operation.jsx │ │ │ │ │ ├── prop-types.js │ │ │ │ │ ├── setting.jsx │ │ │ │ │ ├── styles.js │ │ │ │ │ └── unsetting.jsx │ │ │ │ │ ├── preview.jsx │ │ │ │ │ ├── render-pinned-buttom.jsx │ │ │ │ │ ├── search-bar.jsx │ │ │ │ │ └── search-bar.style.js │ │ │ └── topic │ │ │ │ ├── List.jsx │ │ │ │ ├── List.styles.js │ │ │ │ ├── List.view.jsx │ │ │ │ ├── Settings.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── index.styles.js │ │ │ │ └── modules │ │ │ │ ├── HeaderBarRightButtonCommon.style.js │ │ │ │ ├── ListContentHeaderBar.jsx │ │ │ │ ├── ListSearchBar.jsx │ │ │ │ └── SettingsHeaderBar.jsx │ │ ├── static │ │ │ ├── feed-icon.png │ │ │ └── logo.png │ │ ├── theme.js │ │ └── utils │ │ │ ├── balance.js │ │ │ ├── dateProcess.js │ │ │ ├── getQuery.js │ │ │ ├── request-builder.js │ │ │ └── request.js │ ├── assets │ │ ├── admin.js │ │ ├── feed-icon.png │ │ ├── logo.png │ │ └── mix-manifest.json │ ├── composer.json │ ├── database │ │ ├── factories │ │ │ ├── FeedFactory.php │ │ │ └── FeedPinnedFactory.php │ │ ├── migrations │ │ │ ├── 2017_06_26_081109_create_feeds_table.php │ │ │ ├── 2017_06_26_084846_create_feed_collections_table.php │ │ │ ├── 2017_06_30_091445_create_feed_pinneds_table.php │ │ │ ├── 2017_07_17_013347_append_feeds_count_user_extras_table.php │ │ │ └── 2018_04_02_112033_create_feed_video.php │ │ └── seeds │ │ │ ├── AbilityTableSeeder.php │ │ │ ├── AdvertisingSpaceSeeder.php │ │ │ ├── DatabaseSeeder.php │ │ │ └── SettingTableSeeder.php │ ├── jsconfig.json │ ├── package.json │ ├── routes │ │ ├── admin.php │ │ ├── api2.php │ │ └── new-admin.php │ ├── src │ │ ├── API2 │ │ │ ├── AverageController.php │ │ │ ├── CommentPinnedController.php │ │ │ ├── FeedCollectionController.php │ │ │ ├── FeedCommentController.php │ │ │ ├── FeedController.php │ │ │ ├── FeedPayController.php │ │ │ ├── LikeController.php │ │ │ ├── NewCommentPinnedController.php │ │ │ ├── NewPinnedController.php │ │ │ ├── NewRewardController.php │ │ │ ├── PinnedController.php │ │ │ ├── RankController.php │ │ │ ├── ReportController.php │ │ │ └── RewardController.php │ │ ├── Admin │ │ │ ├── Controllers │ │ │ │ └── Topic.php │ │ │ └── Requests │ │ │ │ └── ListAllTopics.php │ │ ├── AdminControllers │ │ │ ├── CommentController.php │ │ │ ├── FeedController.php │ │ │ ├── FeedPinnedController.php │ │ │ ├── FileController.php │ │ │ ├── HomeController.php │ │ │ └── PayControlController.php │ │ ├── CacheName │ │ │ └── CacheKeys.php │ │ ├── CacheNames.php │ │ ├── FeedServiceProvider.php │ │ ├── FormRequest │ │ │ └── API2 │ │ │ │ ├── StoreFeedComment.php │ │ │ │ └── StoreFeedPost.php │ │ ├── Middleware │ │ │ ├── CheckFeedByFeedId.php │ │ │ └── VerifyCommentContent.php │ │ ├── Models │ │ │ ├── Concerns │ │ │ │ └── HasFeedCollect.php │ │ │ ├── Feed.php │ │ │ ├── FeedCollection.php │ │ │ ├── FeedPinned.php │ │ │ ├── FeedVideo.php │ │ │ └── Relations │ │ │ │ ├── FeedHasLike.php │ │ │ │ ├── FeedHasReward.php │ │ │ │ └── FeedHasVideo.php │ │ ├── Observers │ │ │ └── FeedObserver.php │ │ ├── Repository │ │ │ └── Feed.php │ │ ├── RouteRegistrar.php │ │ ├── Services │ │ │ └── FeedCount.php │ │ └── Traits │ │ │ └── PaginatorPage.php │ ├── tests │ │ └── Feature │ │ │ └── API2 │ │ │ ├── AuditPinnedFeedCommentTest.php │ │ │ ├── CollectFeedTest.php │ │ │ ├── CurrencyPinnedFeedCommentTest.php │ │ │ ├── CurrencyPinnedFeedTest.php │ │ │ ├── DeleteFeedCommentTest.php │ │ │ ├── DeleteFeedTest.php │ │ │ ├── GetFeedCommentTest.php │ │ │ ├── GetFeedTest.php │ │ │ ├── LikeFeedTest.php │ │ │ ├── NewRewardFeedTest.php │ │ │ ├── ReportFeedTest.php │ │ │ ├── RewardFeedTest.php │ │ │ ├── SendFeedCommentTest.php │ │ │ ├── SendImageAndTextFeedTest.php │ │ │ ├── SendImageFeedTest.php │ │ │ └── SendTextFeedTest.php │ ├── views │ │ └── admin.blade.php │ └── webpack.config.babel.js ├── slimkit-plus-id │ ├── .babelrc │ ├── .gitignore │ ├── .styleci.yml │ ├── assets │ │ ├── app.js │ │ └── mix-manifest.json │ ├── composer.json │ ├── config │ │ └── plus-id.php │ ├── database │ │ ├── migrations │ │ │ ├── 2017_11_27_015927_create_plus_id_clients_table.php │ │ │ └── 2017_11_27_021920_create_plus_id_notices_table.php │ │ └── seeds │ │ │ └── DatabaseSeeder.php │ ├── package.json │ ├── resources │ │ ├── assets │ │ │ ├── App.vue │ │ │ ├── axios │ │ │ │ ├── admin.js │ │ │ │ └── index.js │ │ │ ├── components │ │ │ │ ├── commons │ │ │ │ │ ├── NavBar.vue │ │ │ │ │ └── index.js │ │ │ │ ├── modules │ │ │ │ │ ├── Alert.vue │ │ │ │ │ └── ClientRow.vue │ │ │ │ └── pages │ │ │ │ │ ├── Client.vue │ │ │ │ │ ├── ClientCreate.vue │ │ │ │ │ ├── Main.vue │ │ │ │ │ └── NotFound.vue │ │ │ ├── filters.js │ │ │ ├── main.js │ │ │ ├── router.js │ │ │ └── store │ │ │ │ ├── index.js │ │ │ │ └── modules │ │ │ │ ├── alert.js │ │ │ │ └── index.js │ │ ├── lang │ │ │ └── zh-CN │ │ │ │ └── messages.php │ │ ├── stubs │ │ │ ├── model │ │ │ └── seeder │ │ └── views │ │ │ ├── admin.blade.php │ │ │ └── welcome.blade.php │ ├── router.php │ ├── routes │ │ ├── admin.php │ │ └── web.php │ ├── src │ │ ├── Action.php │ │ ├── Actions │ │ │ ├── Action.php │ │ │ ├── Auth │ │ │ │ ├── Login.php │ │ │ │ └── Resolve.php │ │ │ └── User │ │ │ │ ├── Check.php │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── Show.php │ │ │ │ └── Update.php │ │ ├── Admin │ │ │ ├── Controllers │ │ │ │ ├── ClientsController.php │ │ │ │ └── HomeController.php │ │ │ ├── Middleware │ │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ │ ├── CreateClientRequest.php │ │ │ │ └── UpdateClientRequest.php │ │ ├── Handlers │ │ │ └── DevPackageHandler.php │ │ ├── Models │ │ │ ├── Client.php │ │ │ └── Notice.php │ │ ├── Providers │ │ │ ├── AppServiceProvider.php │ │ │ ├── ModelServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ ├── Server.php │ │ ├── Support │ │ │ ├── Message.php │ │ │ └── URL.php │ │ └── Web │ │ │ ├── Controllers │ │ │ ├── HomeController.php │ │ │ └── ShopController.php │ │ │ ├── Middleware │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ └── .gitkeep │ └── webpack.mix.js ├── slimkit-plus-music │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ └── fileinput.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── loading-sm.gif │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── fileinput.js │ │ │ ├── npm.js │ │ │ └── zh.js │ ├── composer.json │ ├── database │ │ ├── migrations │ │ │ ├── 2017_12_25_063114_create_musics_table.php │ │ │ ├── 2017_12_25_063117_create_music_specials_table.php │ │ │ ├── 2017_12_25_063118_create_music_special_links_table.php │ │ │ ├── 2017_12_25_063121_create_music_collections_table.php │ │ │ └── 2017_12_25_063124_create_music_singers_table.php │ │ └── seeds │ │ │ └── DatabaseSeeder.php │ ├── documents │ │ ├── collection-special.md │ │ ├── comment-music.md │ │ ├── comment-special.md │ │ ├── delete-comment.md │ │ ├── digg-music.md │ │ ├── messages.md │ │ ├── music-comment-list.md │ │ ├── music-info.md │ │ ├── my-collection-specials.md │ │ ├── share-music.md │ │ ├── share-special.md │ │ ├── special-comment-list.md │ │ ├── special-info.md │ │ ├── specials.md │ │ ├── uncollection-special.md │ │ ├── undigg-music.md │ │ └── v2 │ │ │ ├── collections.md │ │ │ ├── comments.md │ │ │ ├── like.md │ │ │ ├── music-show.md │ │ │ ├── readme.md │ │ │ └── specials.md │ ├── router.php │ ├── routes │ │ ├── admin.php │ │ ├── api.php │ │ └── web.php │ ├── src │ │ ├── API │ │ │ └── Controllers │ │ │ │ ├── MusicCollectionController.php │ │ │ │ ├── MusicCommentController.php │ │ │ │ ├── MusicController.php │ │ │ │ ├── MusicLikeController.php │ │ │ │ ├── MusicPaidController.php │ │ │ │ └── MusicSpecialController.php │ │ ├── Admin │ │ │ ├── CommentController.php │ │ │ ├── HomeController.php │ │ │ ├── MusicStorageController.php │ │ │ └── SingerController.php │ │ ├── Models │ │ │ ├── Comment.php │ │ │ ├── Music.php │ │ │ ├── MusicCollection.php │ │ │ ├── MusicSinger.php │ │ │ ├── MusicSpecial.php │ │ │ ├── MusicSpecialLink.php │ │ │ └── Relations │ │ │ │ └── MusicHasLike.php │ │ ├── Providers │ │ │ └── AppServiceProvider.php │ │ ├── Requests │ │ │ ├── MusicAdd.php │ │ │ ├── MusicUploadFile.php │ │ │ ├── SingerAdd.php │ │ │ ├── SingerUpdate.php │ │ │ ├── SpecialAdd.php │ │ │ ├── SpecialUpdate.php │ │ │ └── SpecialUploadFile.php │ │ └── helpers.php │ └── views │ │ ├── admin.blade.php │ │ ├── allComments.blade.php │ │ ├── comments.blade.php │ │ ├── list.blade.php │ │ ├── music.blade.php │ │ ├── musicAdd.blade.php │ │ ├── singerAdd.blade.php │ │ ├── singerDetail.blade.php │ │ ├── singers.blade.php │ │ ├── special.blade.php │ │ ├── specialAdd.blade.php │ │ └── specialEdit.blade.php ├── slimkit-plus-news │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── composer.json │ ├── config │ │ └── news.php │ ├── database │ │ ├── factories │ │ │ ├── NewsCateFactory.php │ │ │ └── NewsFactory.php │ │ ├── migrations │ │ │ ├── 2017_12_15_072758_create_news_pinneds_table.php │ │ │ ├── 2017_12_15_072924_create_news_table.php │ │ │ ├── 2017_12_15_072948_create_news_cates_table.php │ │ │ ├── 2017_12_15_073029_create_news_cates_follow_table.php │ │ │ ├── 2017_12_15_073100_create_news_cates_links_table.php │ │ │ ├── 2017_12_15_073119_create_news_collections_table.php │ │ │ ├── 2017_12_15_073209_create_news_recommend_table.php │ │ │ ├── 2017_12_15_073309_create_news_apply_logs_table.php │ │ │ └── 2018_07_10_032926_update_news_table.php │ │ └── seeds │ │ │ ├── AdvertisingSpaceTableSeeder.php │ │ │ ├── DatabaseSeeder.php │ │ │ └── NewsCatesTableSeeder.php │ ├── documents │ │ ├── cancel-collection-news.md │ │ ├── cancel-digg-news.md │ │ ├── collection-news-list.md │ │ ├── collection-news.md │ │ ├── comment-news.md │ │ ├── delete-news-comment.md │ │ ├── digg-news.md │ │ ├── getcomment-by-id.md │ │ ├── messages.md │ │ ├── news-cate-list.md │ │ ├── news-comment-list.md │ │ ├── news-info.md │ │ ├── news-list.md │ │ ├── search-news.md │ │ └── subscribe-news-cate.md │ ├── package.json │ ├── public │ │ ├── admin │ │ │ ├── app.vue │ │ │ ├── axios │ │ │ │ ├── admin.js │ │ │ │ ├── api.js │ │ │ │ └── index.js │ │ │ ├── components │ │ │ │ ├── commons │ │ │ │ │ ├── Alert.vue │ │ │ │ │ ├── Modal.vue │ │ │ │ │ ├── NavBar.vue │ │ │ │ │ ├── Page.vue │ │ │ │ │ └── index.js │ │ │ │ ├── modules │ │ │ │ │ ├── managenews │ │ │ │ │ │ ├── Editor.vue │ │ │ │ │ │ ├── PostCover.vue │ │ │ │ │ │ ├── TagSelect.vue │ │ │ │ │ │ ├── editor │ │ │ │ │ │ │ ├── Editor.vue │ │ │ │ │ │ │ └── zy_editor.js │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── iconfont.css │ │ │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ │ │ ├── iconfont.svg │ │ │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ │ │ └── iconfont.woff │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── md.scss │ │ │ │ │ ├── newslist │ │ │ │ │ │ ├── List.vue │ │ │ │ │ │ ├── NewsFilters.vue │ │ │ │ │ │ └── index.js │ │ │ │ │ └── newspinneds │ │ │ │ │ │ ├── PinnedsFilters.vue │ │ │ │ │ │ ├── PinnedsList.vue │ │ │ │ │ │ └── index.js │ │ │ │ └── pages │ │ │ │ │ ├── CatesList.vue │ │ │ │ │ ├── DeleteList.vue │ │ │ │ │ ├── ManageNews.vue │ │ │ │ │ ├── NewsList.vue │ │ │ │ │ ├── NewsPinneds.vue │ │ │ │ │ └── NewsSetting.vue │ │ │ ├── file_upload_v2.js │ │ │ ├── filters.js │ │ │ ├── index.js │ │ │ └── router.js │ │ ├── app.vue │ │ ├── component │ │ │ ├── Layer │ │ │ │ └── Layer.vue │ │ │ ├── ModelTips │ │ │ │ └── ModelTips.vue │ │ │ ├── Page.vue │ │ │ ├── Upload.vue │ │ │ ├── Upload_v2.vue │ │ │ ├── WangEdit │ │ │ │ └── WangEditor.vue │ │ │ ├── edit.md │ │ │ │ ├── components │ │ │ │ │ ├── index.js │ │ │ │ │ └── main.vue │ │ │ │ ├── locale │ │ │ │ │ └── zh.js │ │ │ │ └── styles │ │ │ │ │ ├── fonts │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.svg │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ │ ├── iconfont.css │ │ │ │ │ └── markdown.css │ │ │ ├── file_upload.js │ │ │ ├── file_upload_v2.js │ │ │ ├── news │ │ │ │ ├── AddRecommend.vue │ │ │ │ ├── BinList.vue │ │ │ │ ├── CategoriesList.vue │ │ │ │ ├── ManageCate.vue │ │ │ │ ├── ManageNews.vue │ │ │ │ ├── NewsList.vue │ │ │ │ ├── NewsPinneds.vue │ │ │ │ ├── NewsSetting.vue │ │ │ │ └── RecommendList.vue │ │ │ └── select.vue │ │ ├── index.js │ │ ├── mix-manifest.json │ │ ├── router.js │ │ ├── style │ │ │ ├── _variables.scss │ │ │ ├── animate.min.css │ │ │ └── app.scss │ │ ├── util │ │ │ ├── md5-min.js │ │ │ └── request.js │ │ └── v1 │ │ │ ├── app.vue │ │ │ ├── component │ │ │ ├── Layer │ │ │ │ └── Layer.vue │ │ │ ├── ModelTips │ │ │ │ └── ModelTips.vue │ │ │ ├── Page.vue │ │ │ ├── Upload.vue │ │ │ ├── Upload_v2.vue │ │ │ ├── WangEdit │ │ │ │ └── WangEditor.vue │ │ │ ├── edit.md │ │ │ │ ├── components │ │ │ │ │ ├── index.js │ │ │ │ │ └── main.vue │ │ │ │ ├── locale │ │ │ │ │ └── zh.js │ │ │ │ └── styles │ │ │ │ │ ├── fonts │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.svg │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ │ ├── iconfont.css │ │ │ │ │ └── markdown.css │ │ │ ├── file_upload.js │ │ │ ├── file_upload_v2.js │ │ │ ├── news │ │ │ │ ├── AddRecommend.vue │ │ │ │ ├── BinList.vue │ │ │ │ ├── CategoriesList.vue │ │ │ │ ├── ManageCate.vue │ │ │ │ ├── ManageNews.vue │ │ │ │ ├── NewsList.vue │ │ │ │ ├── NewsPinneds.vue │ │ │ │ ├── NewsSetting.vue │ │ │ │ └── RecommendList.vue │ │ │ └── select.vue │ │ │ ├── index.js │ │ │ ├── mix-manifest.json │ │ │ ├── router.js │ │ │ ├── style │ │ │ ├── _variables.scss │ │ │ ├── animate.min.css │ │ │ └── app.scss │ │ │ └── util │ │ │ ├── md5-min.js │ │ │ └── request.js │ ├── resource │ │ ├── assets │ │ │ ├── css │ │ │ │ └── index.css │ │ │ ├── fonts │ │ │ │ ├── fontello.eot │ │ │ │ └── fontello.ttf │ │ │ ├── images │ │ │ │ └── fontello.svg │ │ │ ├── js │ │ │ │ ├── index.js │ │ │ │ ├── manifest.js │ │ │ │ └── vendor.js │ │ │ └── mix-manifest.json │ │ └── news-icon.png │ ├── router.php │ ├── routes │ │ ├── admin.php │ │ ├── api.php │ │ └── web.php │ ├── src │ │ ├── API2 │ │ │ ├── Controllers │ │ │ │ ├── AverageController.php │ │ │ │ ├── CateController.php │ │ │ │ ├── CollectionController.php │ │ │ │ ├── CommentController.php │ │ │ │ ├── CommentPinnedController.php │ │ │ │ ├── ContributeController.php │ │ │ │ ├── Controller.php │ │ │ │ ├── LikeController.php │ │ │ │ ├── NewCommentPinnedController.php │ │ │ │ ├── NewPinnedController.php │ │ │ │ ├── NewRewardController.php │ │ │ │ ├── NewsController.php │ │ │ │ ├── PinnedController.php │ │ │ │ ├── RankController.php │ │ │ │ ├── ReportController.php │ │ │ │ └── RewardController.php │ │ │ └── Requests │ │ │ │ ├── StoreContribute.php │ │ │ │ └── StoreNewsComment.php │ │ ├── AdminControllers │ │ │ ├── AuthUserController.php │ │ │ ├── HomeController.php │ │ │ ├── NewsApplyLogController.php │ │ │ ├── NewsCateController.php │ │ │ ├── NewsConfigController.php │ │ │ ├── NewsController.php │ │ │ ├── NewsPinnedController.php │ │ │ └── NewsRecommendController.php │ │ ├── CacheNames.php │ │ ├── Middleware │ │ │ └── VerifyCommentContent.php │ │ ├── Models │ │ │ ├── News.php │ │ │ ├── NewsApplyLog.php │ │ │ ├── NewsCate.php │ │ │ ├── NewsCateFollow.php │ │ │ ├── NewsCateLink.php │ │ │ ├── NewsCollection.php │ │ │ ├── NewsComment.php │ │ │ ├── NewsDigg.php │ │ │ ├── NewsPinned.php │ │ │ ├── NewsRecommend.php │ │ │ └── Relations │ │ │ │ ├── NewsHasCollection.php │ │ │ │ ├── NewsHasLike.php │ │ │ │ └── NewsHasReward.php │ │ ├── Providers │ │ │ └── NewsServiceProvider.php │ │ └── helpers.php │ ├── tests │ │ └── Feature │ │ │ └── API2 │ │ │ ├── CollectNewsTest.php │ │ │ ├── CommentNewsTest.php │ │ │ ├── CurrencyNewsTest.php │ │ │ ├── DeletePublishNewsTest.php │ │ │ ├── EditPublishNewsTest.php │ │ │ ├── FollowNewsCateTest.php │ │ │ ├── GetNewsCategoriesTest.php │ │ │ ├── GetNewsListTest.php │ │ │ ├── GetNewsRankTest.php │ │ │ ├── GetPublishNewsListTest.php │ │ │ ├── LikeNewsTest.php │ │ │ ├── PinnedNewsTest.php │ │ │ ├── ReportNewsTest.php │ │ │ └── RevokedPublishNewsTest.php │ ├── view │ │ ├── admin.blade.php │ │ ├── detail.blade.php │ │ └── example.blade.php │ └── webpack.config.babel.js ├── slimkit-plus-socialite │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── .gitkeep │ ├── composer.json │ ├── config │ │ └── socialite.php │ ├── database │ │ ├── migrations │ │ │ └── 2017_08_15_083452_create_user_socialites_table.php │ │ └── seeds │ │ │ └── .gitkeep │ ├── resource │ │ └── lang │ │ │ └── zh-CN │ │ │ └── messages.php │ ├── router.php │ ├── routes │ │ ├── admin.php │ │ ├── api.php │ │ └── web.php │ └── src │ │ ├── API │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ ├── SocialiteController.php │ │ │ └── WechatController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ ├── AccessTokenRequest.php │ │ │ └── CreateUserRequest.php │ │ ├── Admin │ │ ├── Controllers │ │ │ └── HomeController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ └── Requests │ │ │ └── .gitkeep │ │ ├── Contracts │ │ └── Sociable.php │ │ ├── Drivers │ │ ├── DriverAbstract.php │ │ ├── QQDriver.php │ │ ├── WeChatDriver.php │ │ └── WeiboDriver.php │ │ ├── Models │ │ └── UserSocialite.php │ │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── ModelServiceProvider.php │ │ └── RouteServiceProvider.php │ │ ├── SocialiteManager.php │ │ ├── Traits │ │ └── SocialiteDriverHelper.php │ │ └── Web │ │ ├── Controllers │ │ └── HomeController.php │ │ ├── Middleware │ │ └── .gitkeep │ │ └── Requests │ │ └── .gitkeep └── zhiyicx-plus-pc │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── composer.json │ ├── config │ └── pc.php │ ├── database │ ├── migrations │ │ └── 2017_09_12_021811_create_navigation_table.php │ └── seeds │ │ ├── PcDatabaseSeeder.php │ │ └── PcTableSeeder.php │ ├── package.json │ ├── resources │ ├── assets │ │ ├── admin │ │ │ ├── app.vue │ │ │ ├── component │ │ │ │ ├── Page.vue │ │ │ │ ├── Upload_v2.vue │ │ │ │ ├── file_upload_v2.js │ │ │ │ ├── pc │ │ │ │ │ ├── AuthList.vue │ │ │ │ │ ├── Footnav.vue │ │ │ │ │ ├── LoginManage.vue │ │ │ │ │ ├── Navmanage.vue │ │ │ │ │ ├── Navmenu.vue │ │ │ │ │ └── Setting.vue │ │ │ │ └── report │ │ │ │ │ └── Report.vue │ │ │ ├── index.js │ │ │ ├── router.js │ │ │ ├── style │ │ │ │ └── app.scss │ │ │ └── util │ │ │ │ ├── md5-min.js │ │ │ │ └── request.js │ │ └── web │ │ │ ├── admin.js │ │ │ ├── cropper │ │ │ ├── cropper.min.css │ │ │ └── cropper.min.js │ │ │ ├── css │ │ │ ├── account.css │ │ │ ├── common.css │ │ │ ├── default.min.css │ │ │ ├── feed.css │ │ │ ├── global.css │ │ │ ├── group.css │ │ │ ├── img │ │ │ │ ├── ad.png │ │ │ │ ├── checked.png │ │ │ │ ├── checked1.png │ │ │ │ ├── checked2.png │ │ │ │ ├── close_icon.png │ │ │ │ ├── location_icon.png │ │ │ │ ├── pay_pop_icon.png │ │ │ │ ├── tags_icon.png │ │ │ │ ├── to_post_icon.png │ │ │ │ └── unchecked.png │ │ │ ├── message.css │ │ │ ├── news.css │ │ │ ├── passport.css │ │ │ ├── profile.css │ │ │ ├── question.css │ │ │ ├── rank.css │ │ │ ├── search.css │ │ │ ├── topic.css │ │ │ └── user.css │ │ │ ├── easemob.min.js │ │ │ ├── global.min.js │ │ │ ├── images │ │ │ ├── arrow_news_down.png │ │ │ ├── arrow_news_up.png │ │ │ ├── avatar.png │ │ │ ├── big.cur │ │ │ ├── default_cover.jpg │ │ │ ├── default_group_cover.png │ │ │ ├── default_picture.png │ │ │ ├── dongtai_icon.png │ │ │ ├── down.png │ │ │ ├── ex.png │ │ │ ├── failure.png │ │ │ ├── ic_lastpage.png │ │ │ ├── ic_lastpage_light.png │ │ │ ├── ic_nextpag_light.png │ │ │ ├── ic_nextpage.png │ │ │ ├── ico_anonymity_60.png │ │ │ ├── ico_arro_left_able.png │ │ │ ├── ico_arro_left_unable.png │ │ │ ├── ico_arro_right_able.png │ │ │ ├── ico_arro_right_unable.png │ │ │ ├── jifen_03.png │ │ │ ├── line.png │ │ │ ├── loading.gif │ │ │ ├── loading.png │ │ │ ├── login-leftBg.png │ │ │ ├── login_bg.png │ │ │ ├── login_code.png │ │ │ ├── login_word.png │ │ │ ├── logo.png │ │ │ ├── mind.png │ │ │ ├── pay_pic_failed.png │ │ │ ├── pay_pic_succeed.png │ │ │ ├── pay_pic_wallet.png │ │ │ ├── pay_pic_wallet_on.png │ │ │ ├── pay_pic_zfb_on.png │ │ │ ├── personal_ye.png │ │ │ ├── pic_default_content.png │ │ │ ├── pic_default_groupchat.png │ │ │ ├── pic_default_internet.png │ │ │ ├── pic_default_man.png │ │ │ ├── pic_default_people.png │ │ │ ├── pic_default_secret.png │ │ │ ├── pic_default_woman.png │ │ │ ├── pic_locked.png │ │ │ ├── pic_next.cur │ │ │ ├── pic_prev.cur │ │ │ ├── pic_service.png │ │ │ ├── pic_upload.png │ │ │ ├── picture-add.png │ │ │ ├── pro.png │ │ │ ├── set_success.png │ │ │ ├── sign_bg.png │ │ │ ├── small.cur │ │ │ ├── three-dots.svg │ │ │ ├── triangle.png │ │ │ ├── upload_fm.png │ │ │ ├── upload_jg.png │ │ │ ├── upload_zm.png │ │ │ ├── vip_icon.png │ │ │ ├── vip_icon.svg │ │ │ ├── zixun-left.png │ │ │ └── zixun-right.png │ │ │ ├── js │ │ │ ├── autosize.min.js │ │ │ ├── axios.min.js │ │ │ ├── common.js │ │ │ ├── dexie.min.js │ │ │ ├── easemob │ │ │ │ ├── strophe-1.2.8.min.js │ │ │ │ ├── webim.config.js │ │ │ │ └── websdk-1.4.13.js │ │ │ ├── geohash.js │ │ │ ├── gify.min.js │ │ │ ├── highlight.min.js │ │ │ ├── iconfont.js │ │ │ ├── jdataview.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.lazyload.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.uploadify.js │ │ │ ├── layer.js │ │ │ ├── lodash.min.js │ │ │ ├── markdown-it-container.min.js │ │ │ ├── markdown-it.min.js │ │ │ ├── md5.min.js │ │ │ ├── module.account.js │ │ │ ├── module.easemob.js │ │ │ ├── module.mention.js │ │ │ ├── module.news.js │ │ │ ├── module.passport.js │ │ │ ├── module.picshow.js │ │ │ ├── module.profile.js │ │ │ ├── module.socialite.js │ │ │ ├── module.weibo.js │ │ │ ├── qrcode.js │ │ │ └── unslider.min.js │ │ │ ├── layer │ │ │ ├── laydate │ │ │ │ ├── laydate.js │ │ │ │ └── theme │ │ │ │ │ └── default │ │ │ │ │ ├── font │ │ │ │ │ ├── iconfont.eot │ │ │ │ │ ├── iconfont.svg │ │ │ │ │ ├── iconfont.ttf │ │ │ │ │ └── iconfont.woff │ │ │ │ │ └── laydate.css │ │ │ ├── mobile │ │ │ │ ├── layer.js │ │ │ │ └── need │ │ │ │ │ └── layer.css │ │ │ └── skin │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ ├── markdown │ │ │ ├── pluseditor.css │ │ │ └── pluseditor.min.js │ │ │ ├── mix-manifest.json │ │ │ └── pc-icon.png │ └── views │ │ ├── account │ │ ├── authenticate.blade.php │ │ ├── authinfo.blade.php │ │ ├── binds.blade.php │ │ ├── currency.blade.php │ │ ├── currencydraw.blade.php │ │ ├── currencypay.blade.php │ │ ├── currencyrecords.blade.php │ │ ├── gateway.blade.php │ │ ├── index.blade.php │ │ ├── security.blade.php │ │ ├── sidebar.blade.php │ │ ├── tags.blade.php │ │ ├── update_authenticate.blade.php │ │ ├── wallet.blade.php │ │ ├── walletdraw.blade.php │ │ ├── walletpay.blade.php │ │ └── walletrecords.blade.php │ │ ├── admin.blade.php │ │ ├── feed │ │ ├── index.blade.php │ │ └── read.blade.php │ │ ├── group │ │ ├── index.blade.php │ │ └── read.blade.php │ │ ├── layouts │ │ ├── auth.blade.php │ │ ├── default.blade.php │ │ └── partials │ │ │ ├── authfooter.blade.php │ │ │ ├── authnav.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── leftmenu.blade.php │ │ │ └── nav.blade.php │ │ ├── message │ │ ├── comments.blade.php │ │ ├── likes.blade.php │ │ ├── message.blade.php │ │ ├── notifications.blade.php │ │ ├── pinned_feedcomment.blade.php │ │ ├── pinned_newscomment.blade.php │ │ ├── pinned_post.blade.php │ │ └── pinned_postcomment.blade.php │ │ ├── news │ │ ├── hotauthor.blade.php │ │ ├── index.blade.php │ │ ├── read.blade.php │ │ └── release.blade.php │ │ ├── passport │ │ ├── dynamiclogin.blade.php │ │ ├── findpwd.blade.php │ │ ├── login.blade.php │ │ ├── perfect.blade.php │ │ └── register.blade.php │ │ ├── profile │ │ ├── collect.blade.php │ │ ├── index.blade.php │ │ ├── navbar.blade.php │ │ ├── news.blade.php │ │ └── users.blade.php │ │ ├── question │ │ └── index.blade.php │ │ ├── rank │ │ └── index.blade.php │ │ ├── search │ │ └── index.blade.php │ │ ├── socialite │ │ ├── bind.blade.php │ │ └── socialite.blade.php │ │ ├── templates │ │ ├── comment.blade.php │ │ ├── feed_image.blade.php │ │ ├── feed_images.blade.php │ │ ├── feed_repostable.blade.php │ │ ├── feed_topic.blade.php │ │ ├── feeds.blade.php │ │ ├── follow_mutual.blade.php │ │ ├── group.blade.php │ │ ├── group_member.blade.php │ │ ├── mention.blade.php │ │ ├── news.blade.php │ │ ├── notice.blade.php │ │ ├── page.blade.php │ │ ├── profile_news.blade.php │ │ ├── qa_list.blade.php │ │ ├── question.blade.php │ │ ├── rank.blade.php │ │ ├── rank_lists.blade.php │ │ ├── record.blade.php │ │ ├── repostable.blade.php │ │ ├── rewards.blade.php │ │ └── user.blade.php │ │ ├── topic │ │ ├── create.blade.php │ │ ├── detail.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── widgets │ │ │ ├── hot_topics.blade.php │ │ │ └── topic_card.blade.php │ │ ├── user │ │ ├── area.blade.php │ │ ├── follows.blade.php │ │ └── users.blade.php │ │ └── widgets │ │ ├── checkin.blade.php │ │ ├── comments.blade.php │ │ ├── hotgroups.blade.php │ │ ├── hotnews.blade.php │ │ ├── hotquestions.blade.php │ │ ├── hotusers.blade.php │ │ ├── incomerank.blade.php │ │ ├── markdown.blade.php │ │ ├── postfeed.blade.php │ │ ├── questionrank.blade.php │ │ ├── recusers.blade.php │ │ ├── rewards.blade.php │ │ └── thirdshare.blade.php │ ├── router.php │ ├── routes │ ├── admin.php │ └── web.php │ ├── src │ ├── AdminControllers │ │ ├── ConfigController.php │ │ └── HomeController.php │ ├── Controllers │ │ ├── AccountController.php │ │ ├── BaseController.php │ │ ├── FeedController.php │ │ ├── GroupController.php │ │ ├── MessageController.php │ │ ├── NewsController.php │ │ ├── PassportController.php │ │ ├── ProfileController.php │ │ ├── PublicController.php │ │ ├── QuestionController.php │ │ ├── RankController.php │ │ ├── SearchController.php │ │ ├── SocialiteController.php │ │ ├── TopicController.php │ │ └── UserController.php │ ├── Models │ │ └── Navigation.php │ ├── PcPackageHandler.php │ ├── PcServiceProvider.php │ ├── ViewComposers │ │ ├── Ads.php │ │ ├── Checkin.php │ │ ├── HotGroups.php │ │ ├── HotNews.php │ │ ├── HotQuestions.php │ │ ├── HotUsers.php │ │ ├── IncomeRank.php │ │ ├── QuestionRank.php │ │ ├── QuestionRelevant.php │ │ └── RecommendUsers.php │ └── helpers.php │ └── webpack.mix.js ├── phpunit.xml ├── public ├── .gitignore ├── .htaccess ├── assets │ ├── .gitignore │ ├── css │ │ └── bootstrap.css │ ├── fonts │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── vendor │ │ │ ├── @slimkit │ │ │ └── plus-editor │ │ │ │ └── dist │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ ├── fontello.woff │ │ │ │ └── fontello.woff2 │ │ │ └── bootstrap-sass │ │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── admin.js │ │ └── bootstrap.js │ └── mix-manifest.json ├── favicon.ico ├── index.php ├── plus.png ├── robots.txt └── web.config ├── resources ├── assets │ └── admin │ │ ├── App.vue │ │ ├── api │ │ └── vendor.js │ │ ├── component │ │ ├── Component.vue │ │ ├── Home.vue │ │ ├── Login.vue │ │ ├── Nav.vue │ │ ├── Package.vue │ │ ├── Setting.vue │ │ ├── User.vue │ │ ├── ad │ │ │ ├── AddAd.vue │ │ │ ├── Home.vue │ │ │ ├── Main.vue │ │ │ └── UpdateAd.vue │ │ ├── captcha │ │ │ ├── Gateway.vue │ │ │ ├── Home.vue │ │ │ ├── Main.vue │ │ │ └── Template.vue │ │ ├── certification │ │ │ ├── Category.vue │ │ │ ├── CategoryEdit.vue │ │ │ ├── Certification.vue │ │ │ ├── CertificationAdd.vue │ │ │ ├── CertificationEdit.vue │ │ │ └── Main.vue │ │ ├── commons │ │ │ ├── Loading.vue │ │ │ ├── OffsetPaginator.vue │ │ │ ├── TableLoading.vue │ │ │ └── index.js │ │ ├── conversation │ │ │ ├── Conversation.vue │ │ │ └── Main.vue │ │ ├── gold │ │ │ ├── AddGoldRule.vue │ │ │ ├── AddGoldType.vue │ │ │ ├── GoldRule.vue │ │ │ ├── GoldType.vue │ │ │ ├── Main.vue │ │ │ └── UpdateGoldRule.vue │ │ ├── paid │ │ │ ├── Home.vue │ │ │ └── Main.vue │ │ ├── report │ │ │ ├── Home.vue │ │ │ └── Main.vue │ │ ├── reward │ │ │ ├── Home.vue │ │ │ ├── List.vue │ │ │ └── Main.vue │ │ ├── setting │ │ │ ├── About.vue │ │ │ ├── AddTag.vue │ │ │ ├── Area.vue │ │ │ ├── Base.vue │ │ │ ├── Hots.vue │ │ │ ├── Mail.vue │ │ │ ├── PostCover.vue │ │ │ ├── Security.vue │ │ │ ├── SendMail.vue │ │ │ ├── Server.vue │ │ │ ├── Site.vue │ │ │ ├── TagCategories.vue │ │ │ ├── Tags.vue │ │ │ ├── UpdateTag.vue │ │ │ └── file_upload_v2.js │ │ ├── sms │ │ │ ├── Alidayu.vue │ │ │ ├── Aliyun.vue │ │ │ ├── Gateway.vue │ │ │ ├── Home.vue │ │ │ ├── Huyi.vue │ │ │ ├── Main.vue │ │ │ └── Yunpian.vue │ │ ├── user │ │ │ ├── Abilities.vue │ │ │ ├── AreaLinkage.vue │ │ │ ├── Manage.vue │ │ │ ├── Recommend.vue │ │ │ ├── Register.vue │ │ │ ├── RoleManage.vue │ │ │ ├── Roles.vue │ │ │ ├── Setting.vue │ │ │ ├── UserAdd.vue │ │ │ └── UserManage.vue │ │ └── wallet │ │ │ ├── Accounts.vue │ │ │ ├── Cash.vue │ │ │ ├── CashSetting.vue │ │ │ ├── Main.vue │ │ │ ├── NewPaySetting.vue │ │ │ ├── PayOption.vue │ │ │ ├── PayRatio.vue │ │ │ ├── PayRule.vue │ │ │ ├── PingPlusPlus.vue │ │ │ ├── RechargeType.vue │ │ │ ├── Report.vue │ │ │ ├── Switch.vue │ │ │ └── Water.vue │ │ ├── components │ │ ├── commons │ │ │ ├── Button.vue │ │ │ ├── Loading.vue │ │ │ ├── OffsetPaginator.vue │ │ │ ├── ProcessClickButton.vue │ │ │ ├── SerchUser.vue │ │ │ ├── Table.vue │ │ │ └── index.js │ │ ├── modules │ │ │ ├── Alert.vue │ │ │ ├── cdn │ │ │ │ ├── AliOss.vue │ │ │ │ ├── Filesystem.vue │ │ │ │ ├── Qiniu.vue │ │ │ │ ├── Select.vue │ │ │ │ ├── filesystems │ │ │ │ │ ├── Disk.vue │ │ │ │ │ ├── Local.vue │ │ │ │ │ ├── Public.vue │ │ │ │ │ ├── S3.vue │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── currency │ │ │ │ ├── CashList.vue │ │ │ │ ├── CashSearch.vue │ │ │ │ ├── CurrencyList.vue │ │ │ │ ├── CurrencySearch.vue │ │ │ │ ├── Main.vue │ │ │ │ ├── WaterList.vue │ │ │ │ ├── WaterSearch.vue │ │ │ │ └── index.js │ │ │ ├── file │ │ │ │ └── Setting.vue │ │ │ ├── sensitive │ │ │ │ ├── List.vue │ │ │ │ ├── ListItem.vue │ │ │ │ ├── Search.vue │ │ │ │ ├── Store.vue │ │ │ │ └── index.js │ │ │ ├── setting │ │ │ │ ├── ClearCache.vue │ │ │ │ ├── Cors.vue │ │ │ │ ├── WebClients.vue │ │ │ │ └── security-pay-validate-password.vue │ │ │ └── users │ │ │ │ └── im-helper-user.module.vue │ │ └── pages │ │ │ ├── Cdn.vue │ │ │ ├── File.vue │ │ │ ├── IosIap.vue │ │ │ ├── Sensitive.vue │ │ │ ├── currency │ │ │ ├── Cash.vue │ │ │ ├── Config.vue │ │ │ ├── Currency.vue │ │ │ ├── Statistics.vue │ │ │ └── Water.vue │ │ │ └── user-trashed.page.vue │ │ ├── filters.js │ │ ├── icons │ │ └── default-avatar.vue │ │ ├── index.js │ │ ├── pages │ │ ├── file-storage │ │ │ ├── channels-component │ │ │ │ ├── index.js │ │ │ │ ├── public.vue │ │ │ │ └── wrap.vue │ │ │ ├── filesystems-component │ │ │ │ ├── aliyun-oss.vue │ │ │ │ ├── default.vue │ │ │ │ ├── index.js │ │ │ │ ├── local.vue │ │ │ │ └── wrap.vue │ │ │ ├── home-component │ │ │ │ ├── file-mime-type.vue │ │ │ │ ├── file-size.vue │ │ │ │ ├── image.vue │ │ │ │ ├── index.js │ │ │ │ └── wrap.vue │ │ │ ├── index.js │ │ │ ├── modules │ │ │ │ └── nav-component.vue │ │ │ └── wrap-component.vue │ │ └── user-vendor │ │ │ ├── easemob.vue │ │ │ ├── index.js │ │ │ ├── qq.vue │ │ │ ├── wechat-mp.vue │ │ │ ├── wechat.vue │ │ │ └── weibo.vue │ │ ├── router │ │ ├── ad.js │ │ ├── captcha.js │ │ ├── cdn.js │ │ ├── certification.js │ │ ├── conversation.js │ │ ├── currency.js │ │ ├── file-storage-routes.js │ │ ├── file.js │ │ ├── gold.js │ │ ├── index.js │ │ ├── paid.js │ │ ├── report.js │ │ ├── reward.js │ │ ├── setting.js │ │ ├── sms.js │ │ ├── user.js │ │ └── wallet.js │ │ ├── store │ │ ├── getter-types.js │ │ ├── index.js │ │ ├── module │ │ │ ├── alert.js │ │ │ ├── area.js │ │ │ ├── manages.js │ │ │ ├── site.js │ │ │ ├── system.js │ │ │ └── user.js │ │ └── types.js │ │ ├── style │ │ └── app.scss │ │ └── util │ │ ├── auth.js │ │ ├── codes.js │ │ ├── request.js │ │ └── upload.js ├── css │ └── app.css ├── js │ └── bootstrap.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── zh-CN │ │ ├── auth.php │ │ ├── messages.php │ │ ├── tag.php │ │ └── validation.php ├── repositorie │ ├── .gitignore │ ├── sources │ │ └── .gitignore │ └── zips │ │ └── .gitignore ├── sass │ ├── _variables.scss │ └── bootstrap.scss ├── spa │ ├── .editorconfig │ ├── .env.example │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .postcssrc.js │ ├── .travis.yml │ ├── .vscode │ │ └── settings.json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── babel.config.js │ ├── composer.json │ ├── jest.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── libs │ │ │ ├── gify.min.js │ │ │ ├── jdataview.js │ │ │ └── strophe-1.2.8.min.js │ │ ├── manifest.json │ │ └── plus.png │ ├── scripts │ │ └── build-github-pages-404.js │ ├── src │ │ ├── api │ │ │ ├── api.js │ │ │ ├── bootstrappers.js │ │ │ ├── currency.js │ │ │ ├── feeds.js │ │ │ ├── group.js │ │ │ ├── index.js │ │ │ ├── message.js │ │ │ ├── news.js │ │ │ ├── questions.js │ │ │ ├── ranks.js │ │ │ ├── topic.js │ │ │ ├── upload.js │ │ │ ├── user.js │ │ │ └── wallet.js │ │ ├── app.js │ │ ├── bus.js │ │ ├── components.js │ │ ├── components │ │ │ ├── ActionSheet.vue │ │ │ ├── ApplyForTop.vue │ │ │ ├── Avatar.vue │ │ │ ├── CommentInput.vue │ │ │ ├── DiySelect.vue │ │ │ ├── FeedCard │ │ │ │ ├── CommentItem.vue │ │ │ │ ├── FeedCard.vue │ │ │ │ ├── FeedImage.vue │ │ │ │ ├── FeedVideo.vue │ │ │ │ ├── GroupFeedCard.vue │ │ │ │ └── v-async-image.js │ │ │ ├── FootGuide.vue │ │ │ ├── FullSpin.vue │ │ │ ├── HeadTop.vue │ │ │ ├── ImagePoster.vue │ │ │ ├── JoLoadMore.vue │ │ │ ├── PayFor.vue │ │ │ ├── PhotoSwipe.vue │ │ │ ├── PopupDialog.vue │ │ │ ├── PortalPanel.vue │ │ │ ├── Report.vue │ │ │ ├── Reward.vue │ │ │ ├── UserItem.vue │ │ │ ├── common │ │ │ │ ├── AsyncFile.vue │ │ │ │ ├── BadgeIcon.vue │ │ │ │ ├── CommonHeader.vue │ │ │ │ ├── ImageUploader.vue │ │ │ │ ├── NavTab.vue │ │ │ │ ├── PasswordConfirm.vue │ │ │ │ ├── SearchBar.vue │ │ │ │ ├── TextareaInput.vue │ │ │ │ ├── btnSwitch.vue │ │ │ │ └── message.vue │ │ │ ├── form │ │ │ │ ├── FormAvatarItem.vue │ │ │ │ ├── FormInputItem.vue │ │ │ │ ├── FormLocationItem.vue │ │ │ │ ├── FormSelectItem.vue │ │ │ │ ├── FormSwitchItem.vue │ │ │ │ ├── FormTagsItem.vue │ │ │ │ ├── formItem.js │ │ │ │ └── formItem.less │ │ │ ├── reference │ │ │ │ ├── ReferenceFeed.vue │ │ │ │ ├── ReferenceNews.vue │ │ │ │ └── ReferencePost.vue │ │ │ ├── style │ │ │ │ ├── UserItem.less │ │ │ │ └── pswp │ │ │ │ │ ├── default-skin.png │ │ │ │ │ ├── default-skin.svg │ │ │ │ │ ├── preloader.gif │ │ │ │ │ └── pswp.min.less │ │ │ ├── tabs │ │ │ │ ├── NavTabs.vue │ │ │ │ ├── tab.vue │ │ │ │ ├── tabs.less │ │ │ │ └── tabs.vue │ │ │ └── vendor │ │ │ │ └── ChatWithQQ.vue │ │ ├── console │ │ │ ├── get-less-variables.js │ │ │ └── theme.js │ │ ├── constants │ │ │ └── app.js │ │ ├── directives │ │ │ ├── gifPlay.js │ │ │ └── index.js │ │ ├── easemob │ │ │ ├── init.js │ │ │ └── webim.config.js │ │ ├── filters.js │ │ ├── i18n.js │ │ ├── icons │ │ │ ├── CircleLoading.vue │ │ │ ├── LinearLoading.vue │ │ │ └── iconfont.js │ │ ├── images │ │ │ ├── cert_org.png │ │ │ ├── cert_user.png │ │ │ ├── default_topic.jpg │ │ │ ├── ico_consult.png │ │ │ ├── ico_ts_assistant@2x.png │ │ │ ├── img_default_nothing@2x.png │ │ │ ├── img_default_search@2x.png │ │ │ ├── logo_thinksns+@2x.png │ │ │ ├── pic_default_man.png │ │ │ ├── pic_default_secret.png │ │ │ ├── pic_default_woman.png │ │ │ └── user_home_default_cover.png │ │ ├── locales │ │ │ ├── en.yml │ │ │ └── zh-CN.yml │ │ ├── main.js │ │ ├── mixin.js │ │ ├── page │ │ │ ├── AboutUs.vue │ │ │ ├── ChooseCate.vue │ │ │ ├── ChooseTags.vue │ │ │ ├── Discover.vue │ │ │ ├── Location.vue │ │ │ ├── PostMenu.vue │ │ │ ├── Settings.vue │ │ │ ├── UserFans.vue │ │ │ ├── UserHome.vue │ │ │ ├── UserInfo.vue │ │ │ ├── article │ │ │ │ ├── ArticleCard.vue │ │ │ │ ├── ArticleLikeList.vue │ │ │ │ ├── ArticleRewardList.vue │ │ │ │ └── components │ │ │ │ │ ├── ArticleCommentItem.vue │ │ │ │ │ ├── ArticleComments.vue │ │ │ │ │ ├── ArticleLike.vue │ │ │ │ │ └── ArticleReward.vue │ │ │ ├── checkin │ │ │ │ └── CheckIn.vue │ │ │ ├── common │ │ │ │ └── chooseLocation.vue │ │ │ ├── feed │ │ │ │ ├── FeedDetail.vue │ │ │ │ └── FeedList.vue │ │ │ ├── find │ │ │ │ ├── Find.vue │ │ │ │ ├── FindNer.vue │ │ │ │ ├── FindNew.vue │ │ │ │ ├── FindPop.vue │ │ │ │ ├── FindRec.vue │ │ │ │ └── SearchUser.vue │ │ │ ├── group │ │ │ │ ├── GroupHome.vue │ │ │ │ └── components │ │ │ │ │ └── GroupItem.vue │ │ │ ├── message │ │ │ │ ├── ChatList.vue │ │ │ │ ├── ChatRoom.vue │ │ │ │ ├── MessageBase.vue │ │ │ │ ├── MessageComments.vue │ │ │ │ ├── MessageCommentsItem.vue │ │ │ │ ├── MessageHome.vue │ │ │ │ ├── MessageLikes.vue │ │ │ │ ├── MessageLikesItem.vue │ │ │ │ ├── MessageSystem.vue │ │ │ │ ├── children │ │ │ │ │ ├── audits │ │ │ │ │ │ └── feedCommentAudit.vue │ │ │ │ │ ├── comments │ │ │ │ │ │ ├── MessageCommenAnswerItem.vue │ │ │ │ │ │ ├── MessageCommentFeedItem.vue │ │ │ │ │ │ ├── MessageCommentItemBase.vue │ │ │ │ │ │ └── MessageCommentQuestionItem.vue │ │ │ │ │ └── likes │ │ │ │ │ │ ├── MessageLikeAnswerItem.vue │ │ │ │ │ │ ├── MessageLikeFeedItem.vue │ │ │ │ │ │ ├── MessageLikeItemBase.vue │ │ │ │ │ │ ├── MessageLikeNewsItem.vue │ │ │ │ │ │ └── MessageLikePostItem.vue │ │ │ │ ├── components │ │ │ │ │ ├── AuditContent.vue │ │ │ │ │ ├── AuditStatusBase.vue │ │ │ │ │ ├── AuditStatusFeedComment.vue │ │ │ │ │ ├── ChatItem.vue │ │ │ │ │ └── MessageBubble.vue │ │ │ │ ├── list │ │ │ │ │ └── AuditList.vue │ │ │ │ └── style.less │ │ │ ├── news │ │ │ │ ├── NewsDetail.vue │ │ │ │ ├── NewsList.vue │ │ │ │ ├── NewsSearch.vue │ │ │ │ └── components │ │ │ │ │ ├── NewsCard.vue │ │ │ │ │ └── NewsFilter.vue │ │ │ ├── notFound.vue │ │ │ ├── post │ │ │ │ ├── PostImage.vue │ │ │ │ ├── PostNews.vue │ │ │ │ ├── PostText.vue │ │ │ │ └── components │ │ │ │ │ ├── ImageList.vue │ │ │ │ │ ├── ImagePaidOption.vue │ │ │ │ │ └── TopicSelector.vue │ │ │ ├── profile │ │ │ │ ├── Certificate.vue │ │ │ │ ├── Certification.vue │ │ │ │ ├── ProfileCollection.vue │ │ │ │ ├── ProfileHome.vue │ │ │ │ ├── UserFriends.vue │ │ │ │ ├── children │ │ │ │ │ ├── ProfileGroup.group.vue │ │ │ │ │ ├── ProfileGroup.posts.vue │ │ │ │ │ ├── ProfileGroup.vue │ │ │ │ │ └── ProfileNews.vue │ │ │ │ ├── collection │ │ │ │ │ ├── ProfileCollection.answers.vue │ │ │ │ │ ├── ProfileCollection.feeds.vue │ │ │ │ │ ├── ProfileCollection.news.vue │ │ │ │ │ └── ProfileCollection.posts.vue │ │ │ │ └── components │ │ │ │ │ ├── FriendItem.vue │ │ │ │ │ └── ProfileItem.vue │ │ │ ├── question │ │ │ │ ├── QuestionAnswerItem.vue │ │ │ │ ├── QuestionBase.vue │ │ │ │ ├── QuestionList.vue │ │ │ │ └── components │ │ │ │ │ ├── QuestionCard.vue │ │ │ │ │ ├── QuestionListAnswerCard.vue │ │ │ │ │ └── SwitchBar.vue │ │ │ ├── rank │ │ │ │ ├── RankIndex.vue │ │ │ │ ├── children │ │ │ │ │ ├── RankFeeds.vue │ │ │ │ │ └── RankUsers.vue │ │ │ │ ├── components │ │ │ │ │ ├── RankListItem.vue │ │ │ │ │ └── RankUsersComponent.vue │ │ │ │ ├── lists │ │ │ │ │ ├── BalanceList.vue │ │ │ │ │ ├── CheckinList.vue │ │ │ │ │ ├── ExpertList.vue │ │ │ │ │ ├── FansList.vue │ │ │ │ │ ├── IncomeList.vue │ │ │ │ │ ├── QuestionLikesList.vue │ │ │ │ │ ├── RankFeedList.vue │ │ │ │ │ ├── RankNewsList.vue │ │ │ │ │ └── RankQuestionList.vue │ │ │ │ └── style.less │ │ │ ├── sign │ │ │ │ ├── ChangePassword.vue │ │ │ │ ├── Forgot.vue │ │ │ │ ├── RegisterProtocol.vue │ │ │ │ ├── Signin.vue │ │ │ │ ├── SigninDynamic.vue │ │ │ │ └── Signup.vue │ │ │ ├── topic │ │ │ │ ├── TopicCreate.vue │ │ │ │ ├── TopicDetail.vue │ │ │ │ ├── TopicHome.vue │ │ │ │ ├── TopicParticipants.vue │ │ │ │ ├── TopicSearch.vue │ │ │ │ └── components │ │ │ │ │ ├── TopicCard.vue │ │ │ │ │ ├── TopicList.vue │ │ │ │ │ ├── TopicPostMenu.vue │ │ │ │ │ └── TopicSearchPanel.vue │ │ │ └── wechat │ │ │ │ ├── WechatBindUser.vue │ │ │ │ ├── WechatSignin.vue │ │ │ │ └── WechatSignup.vue │ │ ├── plugins │ │ │ ├── imgCropper │ │ │ │ ├── imgCropper.less │ │ │ │ ├── imgCropper.vue │ │ │ │ ├── imgCropperInstance.js │ │ │ │ └── index.js │ │ │ ├── imgLazy.js │ │ │ ├── lstore │ │ │ │ ├── index.js │ │ │ │ └── lstore.js │ │ │ ├── message-box │ │ │ │ ├── index.js │ │ │ │ └── main.vue │ │ │ └── message │ │ │ │ ├── index.js │ │ │ │ ├── message.vue │ │ │ │ ├── messageInstance.js │ │ │ │ ├── messageList.vue │ │ │ │ └── style │ │ │ │ └── message.less │ │ ├── registerServiceWorker.js │ │ ├── routers │ │ │ ├── base.js │ │ │ ├── feed.js │ │ │ ├── group.js │ │ │ ├── index.js │ │ │ ├── message.js │ │ │ ├── news.js │ │ │ ├── post.js │ │ │ ├── profile.js │ │ │ ├── question.js │ │ │ ├── rank.js │ │ │ ├── routes.js │ │ │ ├── sign.js │ │ │ └── topic.js │ │ ├── stores │ │ │ ├── action.js │ │ │ ├── easemob │ │ │ │ └── index.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── module │ │ │ │ ├── currency.js │ │ │ │ ├── easemob │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── getters.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── mutations.js │ │ │ │ ├── feed.js │ │ │ │ ├── group.js │ │ │ │ ├── index.js │ │ │ │ ├── message.js │ │ │ │ ├── news.js │ │ │ │ ├── post │ │ │ │ │ └── index.js │ │ │ │ ├── question.js │ │ │ │ ├── rank │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── getters.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── mutations.js │ │ │ │ ├── topic.js │ │ │ │ ├── user.js │ │ │ │ └── wallet.js │ │ │ └── mutations.js │ │ ├── style │ │ │ ├── animate.less │ │ │ ├── base.less │ │ │ ├── common.less │ │ │ ├── moblink.less │ │ │ ├── reset.less │ │ │ ├── theme.less │ │ │ ├── transition.less │ │ │ └── tsplus.less │ │ ├── util │ │ │ ├── SendImage.js │ │ │ ├── database.js │ │ │ ├── geohash.js │ │ │ ├── getFirstFrameOfGif.js │ │ │ ├── getMessageUnameTxt.js │ │ │ ├── getRedirectUrl.js │ │ │ ├── imageCheck.js │ │ │ ├── index.js │ │ │ ├── intersectionObserver.js │ │ │ ├── location.js │ │ │ ├── markdown.js │ │ │ ├── prototype.js │ │ │ ├── rem.js │ │ │ ├── validate.js │ │ │ ├── wechat.js │ │ │ ├── wechatShare.js │ │ │ └── wechatShareForIOS.js │ │ ├── utils │ │ │ └── env-constant-type-parse.js │ │ └── vendor │ │ │ ├── easemob │ │ │ ├── AppDB.js │ │ │ ├── WebIM.js │ │ │ ├── WebIMConfig.js │ │ │ ├── index.js │ │ │ └── listen.js │ │ │ └── index.js │ ├── tests │ │ └── unit │ │ │ ├── .eslintrc.js │ │ │ └── components │ │ │ └── common │ │ │ └── message.spec.js │ ├── theme.js │ ├── vue.config.js │ └── yarn.lock ├── stubs │ └── package │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .styleci.yml │ │ ├── assets │ │ ├── app.js │ │ └── mix-manifest.json │ │ ├── database │ │ ├── migrations │ │ │ └── .gitkeep │ │ └── seeds │ │ │ └── DatabaseSeeder.stub │ │ ├── package.json │ │ ├── resources │ │ ├── assets │ │ │ └── main.js │ │ ├── lang │ │ │ └── zh-CN │ │ │ │ └── messages.stub │ │ ├── stubs │ │ │ ├── model │ │ │ └── seeder │ │ └── views │ │ │ └── welcome.blade.stub │ │ ├── router.stub │ │ ├── routes │ │ ├── admin.stub │ │ ├── api.stub │ │ └── web.stub │ │ ├── src │ │ ├── API │ │ │ ├── Controllers │ │ │ │ └── HomeController.stub │ │ │ ├── Middleware │ │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ │ └── .gitkeep │ │ ├── Admin │ │ │ ├── Controllers │ │ │ │ └── HomeController.stub │ │ │ ├── Middleware │ │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ │ └── .gitkeep │ │ ├── Handlers │ │ │ ├── DevPackageHandler.stub │ │ │ └── PackageHandler.stub │ │ ├── Models │ │ │ └── .gitkeep │ │ ├── Providers │ │ │ ├── AppServiceProvider.stub │ │ │ ├── ModelServiceProvider.stub │ │ │ └── RouteServiceProvider.stub │ │ └── Web │ │ │ ├── Controllers │ │ │ └── HomeController.stub │ │ │ ├── Middleware │ │ │ └── .gitkeep │ │ │ └── Requests │ │ │ └── .gitkeep │ │ └── webpack.mix.js └── views │ ├── about.blade.php │ ├── admin.blade.php │ ├── agreement.blade.php │ ├── apple-iap-help.blade.php │ ├── auth │ └── login.blade.php │ ├── currency-developing.blade.php │ ├── developing.blade.php │ ├── errors │ └── 403.blade.php │ ├── installer.blade.php │ ├── layouts │ ├── app.blade.php │ ├── bootstrap-errors.blade.php │ └── bootstrap.blade.php │ ├── mails │ ├── user_notification.blade.php │ └── varification_code.blade.php │ └── welcome.blade.php ├── routes ├── admin.php ├── api.php ├── channels.php ├── console.php ├── new-admin.php └── web.php ├── scripts ├── build-package-assets.sh └── travis-ci-settings.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── configure │ ├── .env.circleci │ ├── .env.example │ ├── .gitignore │ └── plus.yml.example ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── API2 │ │ ├── AdvertisingTest.php │ │ ├── AuthLoginTest.php │ │ ├── AuthLogoutTest.php │ │ ├── AuthRefreshTest.php │ │ ├── BootstrappersTest.php │ │ ├── FileUploadTest.php │ │ ├── FileUploadedTest.php │ │ ├── LocationsTest.php │ │ ├── OrderTest.php │ │ ├── RegisterVerifyCodeTest.php │ │ ├── ReportTest.php │ │ ├── TagsTest.php │ │ ├── UserCountsTest.php │ │ ├── VerifyCodeTest.php │ │ ├── WalletCashTest.php │ │ ├── WalletTransferTest.php │ │ └── WalletTransformTest.php │ └── ExampleTest.php ├── TestCase.php └── Unit │ ├── Auth │ └── JWTAuthTokenTest.php │ ├── ExampleTest.php │ ├── Http │ └── Controllers │ │ └── APIs │ │ └── V2 │ │ └── AuthControllerTest.php │ ├── Packages │ └── Wallet │ │ ├── OrderTest.php │ │ ├── TargetTypeManagerTest.php │ │ ├── TargetTypes │ │ └── TargetTest.php │ │ ├── TypeManagerTest.php │ │ ├── Types │ │ └── UserTypeTest.php │ │ └── WalletTest.php │ └── Support │ └── ConfigurationTest.php └── webpack.mix.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/Dockerfile-fpm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/README.md -------------------------------------------------------------------------------- /_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/_ide_helper.php -------------------------------------------------------------------------------- /app/API2/Controllers/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/Comment.php -------------------------------------------------------------------------------- /app/API2/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/Controller.php -------------------------------------------------------------------------------- /app/API2/Controllers/Feed/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/Feed/Topic.php -------------------------------------------------------------------------------- /app/API2/Controllers/Feed/TopicFeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/Feed/TopicFeed.php -------------------------------------------------------------------------------- /app/API2/Controllers/Feed/TopicFollow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/Feed/TopicFollow.php -------------------------------------------------------------------------------- /app/API2/Controllers/Feed/TopicParticipant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/Feed/TopicParticipant.php -------------------------------------------------------------------------------- /app/API2/Controllers/Feed/TopicReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/Feed/TopicReport.php -------------------------------------------------------------------------------- /app/API2/Controllers/NewsPostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/NewsPostController.php -------------------------------------------------------------------------------- /app/API2/Controllers/NotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/NotificationController.php -------------------------------------------------------------------------------- /app/API2/Controllers/User/AbilityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/User/AbilityController.php -------------------------------------------------------------------------------- /app/API2/Controllers/User/Message/At.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/User/Message/At.php -------------------------------------------------------------------------------- /app/API2/Controllers/UserCountsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Controllers/UserCountsController.php -------------------------------------------------------------------------------- /app/API2/Requests/Feed/CreateTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Requests/Feed/CreateTopic.php -------------------------------------------------------------------------------- /app/API2/Requests/Feed/EditTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Requests/Feed/EditTopic.php -------------------------------------------------------------------------------- /app/API2/Requests/Feed/ListFeedsForATopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Requests/Feed/ListFeedsForATopic.php -------------------------------------------------------------------------------- /app/API2/Requests/Feed/ReportATopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Requests/Feed/ReportATopic.php -------------------------------------------------------------------------------- /app/API2/Requests/Feed/TopicIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Requests/Feed/TopicIndex.php -------------------------------------------------------------------------------- /app/API2/Requests/ListAllComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Requests/ListAllComments.php -------------------------------------------------------------------------------- /app/API2/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Requests/Request.php -------------------------------------------------------------------------------- /app/API2/Resources/Ability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Resources/Ability.php -------------------------------------------------------------------------------- /app/API2/Resources/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Resources/Comment.php -------------------------------------------------------------------------------- /app/API2/Resources/Feed/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Resources/Feed/Topic.php -------------------------------------------------------------------------------- /app/API2/Resources/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Resources/Notification.php -------------------------------------------------------------------------------- /app/API2/Resources/User/Message/AtMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Resources/User/Message/AtMessage.php -------------------------------------------------------------------------------- /app/API2/Resources/UserCountsResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/API2/Resources/UserCountsResource.php -------------------------------------------------------------------------------- /app/Admin/Controllers/AboutUsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/AboutUsController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Admin/Controllers/FileStorage/FileSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/FileStorage/FileSize.php -------------------------------------------------------------------------------- /app/Admin/Controllers/FileStorage/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/FileStorage/MimeType.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Setting/Easemob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/Setting/Easemob.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Setting/QQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/Setting/QQ.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Setting/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/Setting/Security.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Setting/WeChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/Setting/WeChat.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Setting/WeChatMp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/Setting/WeChatMp.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Setting/Weibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/Setting/Weibo.php -------------------------------------------------------------------------------- /app/Admin/Controllers/UserTrashedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Controllers/UserTrashedController.php -------------------------------------------------------------------------------- /app/Admin/Requests/SetEasemob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Requests/SetEasemob.php -------------------------------------------------------------------------------- /app/Admin/Requests/SetQQConfigure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Requests/SetQQConfigure.php -------------------------------------------------------------------------------- /app/Admin/Requests/SetWeChatConfigure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Requests/SetWeChatConfigure.php -------------------------------------------------------------------------------- /app/Admin/Requests/SetWeChatMpConfigure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Requests/SetWeChatMpConfigure.php -------------------------------------------------------------------------------- /app/Admin/Requests/SetWeiboConfigure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Requests/SetWeiboConfigure.php -------------------------------------------------------------------------------- /app/Admin/Resources/TrashedUserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Admin/Resources/TrashedUserResource.php -------------------------------------------------------------------------------- /app/AppInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AppInterface.php -------------------------------------------------------------------------------- /app/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Application.php -------------------------------------------------------------------------------- /app/AtMessage/AtMessageHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/AtMessageHelperTrait.php -------------------------------------------------------------------------------- /app/AtMessage/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/Message.php -------------------------------------------------------------------------------- /app/AtMessage/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/MessageInterface.php -------------------------------------------------------------------------------- /app/AtMessage/ResourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/ResourceInterface.php -------------------------------------------------------------------------------- /app/AtMessage/ResourceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/ResourceManager.php -------------------------------------------------------------------------------- /app/AtMessage/ResourceManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/ResourceManagerInterface.php -------------------------------------------------------------------------------- /app/AtMessage/Resources/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/Resources/Comment.php -------------------------------------------------------------------------------- /app/AtMessage/Resources/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/AtMessage/Resources/Feed.php -------------------------------------------------------------------------------- /app/Auth/JWTAuthToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Auth/JWTAuthToken.php -------------------------------------------------------------------------------- /app/Bootstrap/LoadConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Bootstrap/LoadConfiguration.php -------------------------------------------------------------------------------- /app/CacheNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/CacheNames.php -------------------------------------------------------------------------------- /app/Cdn/Adapter/AliOss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Cdn/Adapter/AliOss.php -------------------------------------------------------------------------------- /app/Cdn/Adapter/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Cdn/Adapter/Filesystem.php -------------------------------------------------------------------------------- /app/Cdn/Adapter/Qiniu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Cdn/Adapter/Qiniu.php -------------------------------------------------------------------------------- /app/Cdn/Refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Cdn/Refresh.php -------------------------------------------------------------------------------- /app/Cdn/UrlManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Cdn/UrlManager.php -------------------------------------------------------------------------------- /app/Concerns/FindMarkdownFileTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Concerns/FindMarkdownFileTrait.php -------------------------------------------------------------------------------- /app/Console/Commands/AppVersionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Console/Commands/AppVersionCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/PackageCreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Console/Commands/PackageCreateCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/PackageHandlerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Console/Commands/PackageHandlerCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Contracts/Cdn/UrlFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Contracts/Cdn/UrlFactory.php -------------------------------------------------------------------------------- /app/Contracts/Cdn/UrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Contracts/Cdn/UrlGenerator.php -------------------------------------------------------------------------------- /app/Contracts/Model/FetchComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Contracts/Model/FetchComment.php -------------------------------------------------------------------------------- /app/Contracts/Model/UserAbility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Contracts/Model/UserAbility.php -------------------------------------------------------------------------------- /app/EaseMobIM/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/EaseMobIM/Controllers/EaseMobController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/EaseMobIM/Controllers/EaseMobController.php -------------------------------------------------------------------------------- /app/EaseMobIM/Controllers/GroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/EaseMobIM/Controllers/GroupController.php -------------------------------------------------------------------------------- /app/EaseMobIM/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/EaseMobIM/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/EaseMobIM/Requests/CheckGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/EaseMobIM/Requests/CheckGroup.php -------------------------------------------------------------------------------- /app/EaseMobIM/Requests/GroupId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/EaseMobIM/Requests/GroupId.php -------------------------------------------------------------------------------- /app/EaseMobIM/Requests/GroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/EaseMobIM/Requests/GroupMember.php -------------------------------------------------------------------------------- /app/EaseMobIM/Requests/UpdateGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/EaseMobIM/Requests/UpdateGroup.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Exceptions/ValidationException.php -------------------------------------------------------------------------------- /app/FileStorage/ChannelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/ChannelManager.php -------------------------------------------------------------------------------- /app/FileStorage/Channels/AbstractChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Channels/AbstractChannel.php -------------------------------------------------------------------------------- /app/FileStorage/Channels/ChannelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Channels/ChannelInterface.php -------------------------------------------------------------------------------- /app/FileStorage/Channels/PublicChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Channels/PublicChannel.php -------------------------------------------------------------------------------- /app/FileStorage/FileMetaAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/FileMetaAbstract.php -------------------------------------------------------------------------------- /app/FileStorage/FileMetaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/FileMetaInterface.php -------------------------------------------------------------------------------- /app/FileStorage/FilesystemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/FilesystemManager.php -------------------------------------------------------------------------------- /app/FileStorage/Filesystems/Local/FileMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Filesystems/Local/FileMeta.php -------------------------------------------------------------------------------- /app/FileStorage/Filesystems/LocalFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Filesystems/LocalFilesystem.php -------------------------------------------------------------------------------- /app/FileStorage/Http/Controllers/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Http/Controllers/Callback.php -------------------------------------------------------------------------------- /app/FileStorage/Http/Controllers/CreateTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Http/Controllers/CreateTask.php -------------------------------------------------------------------------------- /app/FileStorage/Http/Controllers/Local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Http/Controllers/Local.php -------------------------------------------------------------------------------- /app/FileStorage/Http/MakeRoutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Http/MakeRoutes.php -------------------------------------------------------------------------------- /app/FileStorage/ImageDimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/ImageDimension.php -------------------------------------------------------------------------------- /app/FileStorage/ImageDimensionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/ImageDimensionInterface.php -------------------------------------------------------------------------------- /app/FileStorage/Pay/PayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Pay/PayInterface.php -------------------------------------------------------------------------------- /app/FileStorage/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Resource.php -------------------------------------------------------------------------------- /app/FileStorage/ResourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/ResourceInterface.php -------------------------------------------------------------------------------- /app/FileStorage/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Storage.php -------------------------------------------------------------------------------- /app/FileStorage/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/StorageInterface.php -------------------------------------------------------------------------------- /app/FileStorage/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Task.php -------------------------------------------------------------------------------- /app/FileStorage/TaskInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/TaskInterface.php -------------------------------------------------------------------------------- /app/FileStorage/Traits/HasImageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/Traits/HasImageTrait.php -------------------------------------------------------------------------------- /app/FileStorage/design-configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/FileStorage/design-configuration.php -------------------------------------------------------------------------------- /app/Http/Controllers/APIs/V2/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/APIs/V2/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/APIs/V2/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/APIs/V2/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/APIs/V2/PayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/APIs/V2/PayController.php -------------------------------------------------------------------------------- /app/Http/Controllers/APIs/V2/RankController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/APIs/V2/RankController.php -------------------------------------------------------------------------------- /app/Http/Controllers/APIs/V2/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/APIs/V2/TagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/APIs/V2/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/APIs/V2/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CdnController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/CdnController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CorsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/CorsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/FileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/FileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/ReportController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RewardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/RewardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/SiteController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SmsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/SmsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SystemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/SystemController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/TagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DevelopController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/DevelopController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/DisposeSensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/DisposeSensitive.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SensitiveOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/SensitiveOperation.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserAbility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/UserAbility.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Middleware/VerifyUserPassword.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/StoreCurrencyCash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/StoreCurrencyCash.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/StoreTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/StoreTag.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/StoreTransform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/StoreTransform.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/StoreUploadFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/StoreUploadFile.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/StoreUserPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/StoreUserPost.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/StoreVerifyCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/StoreVerifyCode.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/StoreWalletRecharge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/StoreWalletRecharge.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/Transfer.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/UpdateTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/UpdateTag.php -------------------------------------------------------------------------------- /app/Http/Requests/API2/UserCertification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/API2/UserCertification.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/CreateSensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/Admin/CreateSensitive.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/UpdateCorsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/Admin/UpdateCorsRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/UpdateSensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Http/Requests/Admin/UpdateSensitive.php -------------------------------------------------------------------------------- /app/Jobs/PushMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Jobs/PushMessage.php -------------------------------------------------------------------------------- /app/Listeners/VerificationCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Listeners/VerificationCode.php -------------------------------------------------------------------------------- /app/Models/Ability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Ability.php -------------------------------------------------------------------------------- /app/Models/Advertising.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Advertising.php -------------------------------------------------------------------------------- /app/Models/AdvertisingSpace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/AdvertisingSpace.php -------------------------------------------------------------------------------- /app/Models/Area.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Area.php -------------------------------------------------------------------------------- /app/Models/BlackList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/BlackList.php -------------------------------------------------------------------------------- /app/Models/Certification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Certification.php -------------------------------------------------------------------------------- /app/Models/CertificationCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/CertificationCategory.php -------------------------------------------------------------------------------- /app/Models/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Collection.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/CommonConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/CommonConfig.php -------------------------------------------------------------------------------- /app/Models/Concerns/HasAvatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Concerns/HasAvatar.php -------------------------------------------------------------------------------- /app/Models/Concerns/Macroable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Concerns/Macroable.php -------------------------------------------------------------------------------- /app/Models/Concerns/UserHasAbility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Concerns/UserHasAbility.php -------------------------------------------------------------------------------- /app/Models/Concerns/UserHasNotifiable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Concerns/UserHasNotifiable.php -------------------------------------------------------------------------------- /app/Models/Conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Conversation.php -------------------------------------------------------------------------------- /app/Models/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Currency.php -------------------------------------------------------------------------------- /app/Models/CurrencyCommodity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/CurrencyCommodity.php -------------------------------------------------------------------------------- /app/Models/CurrencyOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/CurrencyOrder.php -------------------------------------------------------------------------------- /app/Models/CurrencyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/CurrencyType.php -------------------------------------------------------------------------------- /app/Models/CurrencyTypeTransform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/CurrencyTypeTransform.php -------------------------------------------------------------------------------- /app/Models/Famous.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Famous.php -------------------------------------------------------------------------------- /app/Models/FeedTopic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/FeedTopic.php -------------------------------------------------------------------------------- /app/Models/FeedTopicLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/FeedTopicLink.php -------------------------------------------------------------------------------- /app/Models/FeedTopicUserLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/FeedTopicUserLink.php -------------------------------------------------------------------------------- /app/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/File.php -------------------------------------------------------------------------------- /app/Models/FileWith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/FileWith.php -------------------------------------------------------------------------------- /app/Models/GoldRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/GoldRule.php -------------------------------------------------------------------------------- /app/Models/GoldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/GoldType.php -------------------------------------------------------------------------------- /app/Models/ImGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/ImGroup.php -------------------------------------------------------------------------------- /app/Models/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Like.php -------------------------------------------------------------------------------- /app/Models/NativePayOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/NativePayOrder.php -------------------------------------------------------------------------------- /app/Models/NewWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/NewWallet.php -------------------------------------------------------------------------------- /app/Models/PaidNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/PaidNode.php -------------------------------------------------------------------------------- /app/Models/PaidNodeUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/PaidNodeUser.php -------------------------------------------------------------------------------- /app/Models/Relations/PaidNodeHasUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/PaidNodeHasUser.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasBlackList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasBlackList.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasComment.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasCurrency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasCurrency.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasFilesWith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasFilesWith.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasFollow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasFollow.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasLike.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasNewWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasNewWallet.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasReward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasReward.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasRole.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasWallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasWallet.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasWalletCash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasWalletCash.php -------------------------------------------------------------------------------- /app/Models/Relations/UserHasWalletCharge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Relations/UserHasWalletCharge.php -------------------------------------------------------------------------------- /app/Models/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Report.php -------------------------------------------------------------------------------- /app/Models/Reward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Reward.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/RoleUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/RoleUser.php -------------------------------------------------------------------------------- /app/Models/Sensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Sensitive.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Tag.php -------------------------------------------------------------------------------- /app/Models/TagCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/TagCategory.php -------------------------------------------------------------------------------- /app/Models/Taggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Taggable.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/UserCount.php -------------------------------------------------------------------------------- /app/Models/UserExtra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/UserExtra.php -------------------------------------------------------------------------------- /app/Models/UserFollow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/UserFollow.php -------------------------------------------------------------------------------- /app/Models/UserRecommended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/UserRecommended.php -------------------------------------------------------------------------------- /app/Models/UserUnreadCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/UserUnreadCount.php -------------------------------------------------------------------------------- /app/Models/VerificationCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/VerificationCode.php -------------------------------------------------------------------------------- /app/Models/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/Wallet.php -------------------------------------------------------------------------------- /app/Models/WalletCash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/WalletCash.php -------------------------------------------------------------------------------- /app/Models/WalletCharge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/WalletCharge.php -------------------------------------------------------------------------------- /app/Models/WalletOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Models/WalletOrder.php -------------------------------------------------------------------------------- /app/Notifications/At.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/At.php -------------------------------------------------------------------------------- /app/Notifications/Channels/JPushChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/Channels/JPushChannel.php -------------------------------------------------------------------------------- /app/Notifications/Channels/SmsChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/Channels/SmsChannel.php -------------------------------------------------------------------------------- /app/Notifications/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/Comment.php -------------------------------------------------------------------------------- /app/Notifications/Follow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/Follow.php -------------------------------------------------------------------------------- /app/Notifications/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/Like.php -------------------------------------------------------------------------------- /app/Notifications/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/System.php -------------------------------------------------------------------------------- /app/Notifications/UserNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/UserNotification.php -------------------------------------------------------------------------------- /app/Notifications/VerificationCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Notifications/VerificationCode.php -------------------------------------------------------------------------------- /app/Observers/CommentObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Observers/CommentObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Packages/Currency/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Currency/Order.php -------------------------------------------------------------------------------- /app/Packages/Currency/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Currency/Process.php -------------------------------------------------------------------------------- /app/Packages/Currency/Processes/AppStorePay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Currency/Processes/AppStorePay.php -------------------------------------------------------------------------------- /app/Packages/Currency/Processes/Cash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Currency/Processes/Cash.php -------------------------------------------------------------------------------- /app/Packages/Currency/Processes/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Currency/Processes/Common.php -------------------------------------------------------------------------------- /app/Packages/Currency/Processes/Recharge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Currency/Processes/Recharge.php -------------------------------------------------------------------------------- /app/Packages/Currency/Processes/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Currency/Processes/User.php -------------------------------------------------------------------------------- /app/Packages/Wallet/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/Order.php -------------------------------------------------------------------------------- /app/Packages/Wallet/TargetTypeManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/TargetTypeManager.php -------------------------------------------------------------------------------- /app/Packages/Wallet/TargetTypes/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/TargetTypes/Target.php -------------------------------------------------------------------------------- /app/Packages/Wallet/TargetTypes/UserTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/TargetTypes/UserTarget.php -------------------------------------------------------------------------------- /app/Packages/Wallet/TypeManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/TypeManager.php -------------------------------------------------------------------------------- /app/Packages/Wallet/Types/RechargeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/Types/RechargeType.php -------------------------------------------------------------------------------- /app/Packages/Wallet/Types/RewardType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/Types/RewardType.php -------------------------------------------------------------------------------- /app/Packages/Wallet/Types/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/Types/Type.php -------------------------------------------------------------------------------- /app/Packages/Wallet/Types/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/Types/UserType.php -------------------------------------------------------------------------------- /app/Packages/Wallet/Types/WidthdrawType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/Types/WidthdrawType.php -------------------------------------------------------------------------------- /app/Packages/Wallet/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Packages/Wallet/Wallet.php -------------------------------------------------------------------------------- /app/Policies/Feed/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Policies/Feed/Topic.php -------------------------------------------------------------------------------- /app/Policies/NewsPostPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Policies/NewsPostPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EloquentServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/EloquentServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/NotificationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/NotificationServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TelescopeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Providers/TelescopeServiceProvider.php -------------------------------------------------------------------------------- /app/Services/Push.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Services/Push.php -------------------------------------------------------------------------------- /app/Services/UserAbility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Services/UserAbility.php -------------------------------------------------------------------------------- /app/Services/Wallet/Charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Services/Wallet/Charge.php -------------------------------------------------------------------------------- /app/Support/BootstrapAPIsEventer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Support/BootstrapAPIsEventer.php -------------------------------------------------------------------------------- /app/Support/CdnUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Support/CdnUrlGenerator.php -------------------------------------------------------------------------------- /app/Support/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Support/Configuration.php -------------------------------------------------------------------------------- /app/Support/ManageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Support/ManageRepository.php -------------------------------------------------------------------------------- /app/Support/PackageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Support/PackageHandler.php -------------------------------------------------------------------------------- /app/Support/PinnedsNotificationEventer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Support/PinnedsNotificationEventer.php -------------------------------------------------------------------------------- /app/Support/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Support/Setting.php -------------------------------------------------------------------------------- /app/Types/Models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Types/Models.php -------------------------------------------------------------------------------- /app/Utils/DateTimeToIso8601ZuluString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Utils/DateTimeToIso8601ZuluString.php -------------------------------------------------------------------------------- /app/Utils/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Utils/Markdown.php -------------------------------------------------------------------------------- /app/Utils/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/Utils/Path.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cdn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/cdn.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/http.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/image.php -------------------------------------------------------------------------------- /config/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/jwt.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/paid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/paid.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/session.php -------------------------------------------------------------------------------- /config/sms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/sms.php -------------------------------------------------------------------------------- /config/telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/telescope.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/migrations/2017_02_13_031150_roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/migrations/2017_02_13_031150_roles.php -------------------------------------------------------------------------------- /database/seeders/AbilitySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/AbilitySeeder.php -------------------------------------------------------------------------------- /database/seeders/AreasTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/AreasTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/CurrencyTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/CurrencyTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/GoldTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/GoldTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/PackagesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/PackagesSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/SettingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/TagsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/TagsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/database/seeders/UsersTableSeeder.php -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docs/guide/upgrade/1.9-to-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/docs/guide/upgrade/1.9-to-2.0.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/.gitignore -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["vue-app", "es2015"] 3 | } -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/.gitignore -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/.styleci.yml -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/README.md -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/admin/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/admin/App.vue -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/admin/index.js -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/package.json -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/router.php -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/routes/api.php -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-appversion/routes/web.php -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/src/API/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/src/API/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/src/Admin/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/src/Admin/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/src/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/src/Web/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-appversion/src/Web/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-around-amap/README.md -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-around-amap/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-around-amap/router.php -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/src/API/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/src/API/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/src/Admin/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/src/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/src/Web/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-around-amap/src/Web/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/.styleci.yml -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/LICENSE -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/README.md -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/assets/icon.svg -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/router.php -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/routes/admin.php -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/routes/api.php -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-checkin/routes/web.php -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/src/API/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/src/Admin/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/src/Admin/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/src/Web/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-checkin/src/Web/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/.babelrc -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/.eslintrc.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | vendor 3 | *yarn* -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/LICENSE -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/README.md: -------------------------------------------------------------------------------- 1 | # plus-component-feed 2 | 3 | ThinkSNS+ 动态应用 4 | 5 | ## v2 文档 6 | 7 | [docs](docs/api2); 8 | -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/admin/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/admin/App.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/admin/api/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/admin/api/feed.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/admin/api/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/admin/api/topic.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/admin/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/admin/api/user.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/admin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/admin/main.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/admin/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/admin/theme.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/assets/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/assets/admin.js -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/assets/feed-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/assets/feed-icon.png -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/assets/logo.png -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/jsconfig.json -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/package.json -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/routes/admin.php -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/routes/api2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/routes/api2.php -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/routes/new-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/routes/new-admin.php -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/src/CacheNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/src/CacheNames.php -------------------------------------------------------------------------------- /packages/slimkit-plus-feed/src/Models/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-feed/src/Models/Feed.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/.babelrc -------------------------------------------------------------------------------- /packages/slimkit-plus-id/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /vendor/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /packages/slimkit-plus-id/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/.styleci.yml -------------------------------------------------------------------------------- /packages/slimkit-plus-id/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/assets/app.js -------------------------------------------------------------------------------- /packages/slimkit-plus-id/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-id/config/plus-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/config/plus-id.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/package.json -------------------------------------------------------------------------------- /packages/slimkit-plus-id/resources/stubs/model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/resources/stubs/model -------------------------------------------------------------------------------- /packages/slimkit-plus-id/resources/stubs/seeder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/resources/stubs/seeder -------------------------------------------------------------------------------- /packages/slimkit-plus-id/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/router.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/routes/admin.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/routes/web.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/src/Action.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Actions/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/src/Actions/Action.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Admin/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Models/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/src/Models/Client.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Models/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/src/Models/Notice.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/src/Server.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Support/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/src/Support/URL.php -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Web/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-id/src/Web/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-id/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-id/webpack.mix.js -------------------------------------------------------------------------------- /packages/slimkit-plus-music/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /packages/slimkit-plus-music/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/LICENSE -------------------------------------------------------------------------------- /packages/slimkit-plus-music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/README.md -------------------------------------------------------------------------------- /packages/slimkit-plus-music/assets/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/assets/js/npm.js -------------------------------------------------------------------------------- /packages/slimkit-plus-music/assets/js/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/assets/js/zh.js -------------------------------------------------------------------------------- /packages/slimkit-plus-music/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-music/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/router.php -------------------------------------------------------------------------------- /packages/slimkit-plus-music/routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/routes/admin.php -------------------------------------------------------------------------------- /packages/slimkit-plus-music/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/routes/api.php -------------------------------------------------------------------------------- /packages/slimkit-plus-music/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/routes/web.php -------------------------------------------------------------------------------- /packages/slimkit-plus-music/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-music/src/helpers.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } -------------------------------------------------------------------------------- /packages/slimkit-plus-news/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/.gitignore -------------------------------------------------------------------------------- /packages/slimkit-plus-news/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/README.md -------------------------------------------------------------------------------- /packages/slimkit-plus-news/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-news/config/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/config/news.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/package.json -------------------------------------------------------------------------------- /packages/slimkit-plus-news/public/admin/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/public/admin/app.vue -------------------------------------------------------------------------------- /packages/slimkit-plus-news/public/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/public/app.vue -------------------------------------------------------------------------------- /packages/slimkit-plus-news/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/public/index.js -------------------------------------------------------------------------------- /packages/slimkit-plus-news/public/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/public/router.js -------------------------------------------------------------------------------- /packages/slimkit-plus-news/public/v1/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/public/v1/app.vue -------------------------------------------------------------------------------- /packages/slimkit-plus-news/public/v1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/public/v1/index.js -------------------------------------------------------------------------------- /packages/slimkit-plus-news/public/v1/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/public/v1/router.js -------------------------------------------------------------------------------- /packages/slimkit-plus-news/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/router.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/routes/admin.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/routes/api.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/routes/web.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/src/CacheNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/src/CacheNames.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/src/Models/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/src/Models/News.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/src/helpers.php -------------------------------------------------------------------------------- /packages/slimkit-plus-news/view/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-news/view/admin.blade.php -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-socialite/LICENSE -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-socialite/README.md -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-socialite/composer.json -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-socialite/router.php -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-socialite/routes/api.php -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/slimkit-plus-socialite/routes/web.php -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/src/API/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/src/Admin/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/src/Admin/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/src/Web/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/slimkit-plus-socialite/src/Web/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/.babelrc -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/.editorconfig -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/.gitignore -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/.npmrc: -------------------------------------------------------------------------------- 1 | sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/README.md -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/composer.json -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/config/pc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/config/pc.php -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/package.json -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/router.php -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/routes/admin.php -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/routes/web.php -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/src/helpers.php -------------------------------------------------------------------------------- /packages/zhiyicx-plus-pc/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/packages/zhiyicx-plus-pc/webpack.mix.js -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/.gitignore -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/.gitignore -------------------------------------------------------------------------------- /public/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/css/bootstrap.css -------------------------------------------------------------------------------- /public/assets/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/fonts/iconfont.eot -------------------------------------------------------------------------------- /public/assets/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/fonts/iconfont.svg -------------------------------------------------------------------------------- /public/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /public/assets/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/fonts/iconfont.woff -------------------------------------------------------------------------------- /public/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/js/admin.js -------------------------------------------------------------------------------- /public/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/js/bootstrap.js -------------------------------------------------------------------------------- /public/assets/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/assets/mix-manifest.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/index.php -------------------------------------------------------------------------------- /public/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/plus.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/assets/admin/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/App.vue -------------------------------------------------------------------------------- /resources/assets/admin/api/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/api/vendor.js -------------------------------------------------------------------------------- /resources/assets/admin/component/Component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/Component.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/Home.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/Login.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/Nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/Nav.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/Package.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/Package.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/Setting.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/User.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/User.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/ad/AddAd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/ad/AddAd.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/ad/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/ad/Home.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/ad/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/ad/Main.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/gold/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/gold/Main.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/paid/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/paid/Home.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/paid/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/paid/Main.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/sms/Aliyun.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/sms/Aliyun.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/sms/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/sms/Home.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/sms/Huyi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/sms/Huyi.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/sms/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/sms/Main.vue -------------------------------------------------------------------------------- /resources/assets/admin/component/user/Roles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/component/user/Roles.vue -------------------------------------------------------------------------------- /resources/assets/admin/components/pages/Cdn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/components/pages/Cdn.vue -------------------------------------------------------------------------------- /resources/assets/admin/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/filters.js -------------------------------------------------------------------------------- /resources/assets/admin/icons/default-avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/icons/default-avatar.vue -------------------------------------------------------------------------------- /resources/assets/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/index.js -------------------------------------------------------------------------------- /resources/assets/admin/pages/file-storage/channels-component/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './wrap'; 2 | -------------------------------------------------------------------------------- /resources/assets/admin/pages/file-storage/filesystems-component/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './wrap'; 2 | -------------------------------------------------------------------------------- /resources/assets/admin/pages/file-storage/home-component/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './wrap'; 2 | -------------------------------------------------------------------------------- /resources/assets/admin/pages/user-vendor/qq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/pages/user-vendor/qq.vue -------------------------------------------------------------------------------- /resources/assets/admin/router/ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/ad.js -------------------------------------------------------------------------------- /resources/assets/admin/router/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/captcha.js -------------------------------------------------------------------------------- /resources/assets/admin/router/cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/cdn.js -------------------------------------------------------------------------------- /resources/assets/admin/router/certification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/certification.js -------------------------------------------------------------------------------- /resources/assets/admin/router/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/conversation.js -------------------------------------------------------------------------------- /resources/assets/admin/router/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/currency.js -------------------------------------------------------------------------------- /resources/assets/admin/router/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/file.js -------------------------------------------------------------------------------- /resources/assets/admin/router/gold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/gold.js -------------------------------------------------------------------------------- /resources/assets/admin/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/index.js -------------------------------------------------------------------------------- /resources/assets/admin/router/paid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/paid.js -------------------------------------------------------------------------------- /resources/assets/admin/router/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/report.js -------------------------------------------------------------------------------- /resources/assets/admin/router/reward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/reward.js -------------------------------------------------------------------------------- /resources/assets/admin/router/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/setting.js -------------------------------------------------------------------------------- /resources/assets/admin/router/sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/sms.js -------------------------------------------------------------------------------- /resources/assets/admin/router/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/user.js -------------------------------------------------------------------------------- /resources/assets/admin/router/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/router/wallet.js -------------------------------------------------------------------------------- /resources/assets/admin/store/getter-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/getter-types.js -------------------------------------------------------------------------------- /resources/assets/admin/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/index.js -------------------------------------------------------------------------------- /resources/assets/admin/store/module/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/module/alert.js -------------------------------------------------------------------------------- /resources/assets/admin/store/module/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/module/area.js -------------------------------------------------------------------------------- /resources/assets/admin/store/module/manages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/module/manages.js -------------------------------------------------------------------------------- /resources/assets/admin/store/module/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/module/site.js -------------------------------------------------------------------------------- /resources/assets/admin/store/module/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/module/system.js -------------------------------------------------------------------------------- /resources/assets/admin/store/module/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/module/user.js -------------------------------------------------------------------------------- /resources/assets/admin/store/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/store/types.js -------------------------------------------------------------------------------- /resources/assets/admin/style/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/style/app.scss -------------------------------------------------------------------------------- /resources/assets/admin/util/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/util/auth.js -------------------------------------------------------------------------------- /resources/assets/admin/util/codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/util/codes.js -------------------------------------------------------------------------------- /resources/assets/admin/util/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/util/request.js -------------------------------------------------------------------------------- /resources/assets/admin/util/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/assets/admin/util/upload.js -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/zh-CN/auth.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/zh-CN/messages.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/zh-CN/tag.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/lang/zh-CN/validation.php -------------------------------------------------------------------------------- /resources/repositorie/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/repositorie/.gitignore -------------------------------------------------------------------------------- /resources/repositorie/sources/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/repositorie/zips/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/sass/bootstrap.scss -------------------------------------------------------------------------------- /resources/spa/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.editorconfig -------------------------------------------------------------------------------- /resources/spa/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.env.example -------------------------------------------------------------------------------- /resources/spa/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.eslintignore -------------------------------------------------------------------------------- /resources/spa/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.eslintrc.js -------------------------------------------------------------------------------- /resources/spa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.gitignore -------------------------------------------------------------------------------- /resources/spa/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.postcssrc.js -------------------------------------------------------------------------------- /resources/spa/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.travis.yml -------------------------------------------------------------------------------- /resources/spa/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/.vscode/settings.json -------------------------------------------------------------------------------- /resources/spa/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/CONTRIBUTING.md -------------------------------------------------------------------------------- /resources/spa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/LICENSE -------------------------------------------------------------------------------- /resources/spa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/README.md -------------------------------------------------------------------------------- /resources/spa/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@vue/app'], 3 | } 4 | -------------------------------------------------------------------------------- /resources/spa/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/composer.json -------------------------------------------------------------------------------- /resources/spa/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/jest.config.js -------------------------------------------------------------------------------- /resources/spa/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/jsconfig.json -------------------------------------------------------------------------------- /resources/spa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/package.json -------------------------------------------------------------------------------- /resources/spa/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/public/favicon.ico -------------------------------------------------------------------------------- /resources/spa/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/public/index.html -------------------------------------------------------------------------------- /resources/spa/public/libs/gify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/public/libs/gify.min.js -------------------------------------------------------------------------------- /resources/spa/public/libs/jdataview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/public/libs/jdataview.js -------------------------------------------------------------------------------- /resources/spa/public/libs/strophe-1.2.8.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/public/libs/strophe-1.2.8.min.js -------------------------------------------------------------------------------- /resources/spa/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/public/manifest.json -------------------------------------------------------------------------------- /resources/spa/public/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/public/plus.png -------------------------------------------------------------------------------- /resources/spa/scripts/build-github-pages-404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/scripts/build-github-pages-404.js -------------------------------------------------------------------------------- /resources/spa/src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/api.js -------------------------------------------------------------------------------- /resources/spa/src/api/bootstrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/bootstrappers.js -------------------------------------------------------------------------------- /resources/spa/src/api/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/currency.js -------------------------------------------------------------------------------- /resources/spa/src/api/feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/feeds.js -------------------------------------------------------------------------------- /resources/spa/src/api/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/group.js -------------------------------------------------------------------------------- /resources/spa/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/index.js -------------------------------------------------------------------------------- /resources/spa/src/api/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/message.js -------------------------------------------------------------------------------- /resources/spa/src/api/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/news.js -------------------------------------------------------------------------------- /resources/spa/src/api/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/questions.js -------------------------------------------------------------------------------- /resources/spa/src/api/ranks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/ranks.js -------------------------------------------------------------------------------- /resources/spa/src/api/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/topic.js -------------------------------------------------------------------------------- /resources/spa/src/api/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/upload.js -------------------------------------------------------------------------------- /resources/spa/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/user.js -------------------------------------------------------------------------------- /resources/spa/src/api/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/api/wallet.js -------------------------------------------------------------------------------- /resources/spa/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/app.js -------------------------------------------------------------------------------- /resources/spa/src/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/bus.js -------------------------------------------------------------------------------- /resources/spa/src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components.js -------------------------------------------------------------------------------- /resources/spa/src/components/ActionSheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/ActionSheet.vue -------------------------------------------------------------------------------- /resources/spa/src/components/ApplyForTop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/ApplyForTop.vue -------------------------------------------------------------------------------- /resources/spa/src/components/Avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/Avatar.vue -------------------------------------------------------------------------------- /resources/spa/src/components/CommentInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/CommentInput.vue -------------------------------------------------------------------------------- /resources/spa/src/components/DiySelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/DiySelect.vue -------------------------------------------------------------------------------- /resources/spa/src/components/FootGuide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/FootGuide.vue -------------------------------------------------------------------------------- /resources/spa/src/components/FullSpin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/FullSpin.vue -------------------------------------------------------------------------------- /resources/spa/src/components/HeadTop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/HeadTop.vue -------------------------------------------------------------------------------- /resources/spa/src/components/ImagePoster.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/ImagePoster.vue -------------------------------------------------------------------------------- /resources/spa/src/components/JoLoadMore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/JoLoadMore.vue -------------------------------------------------------------------------------- /resources/spa/src/components/PayFor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/PayFor.vue -------------------------------------------------------------------------------- /resources/spa/src/components/PhotoSwipe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/PhotoSwipe.vue -------------------------------------------------------------------------------- /resources/spa/src/components/PopupDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/PopupDialog.vue -------------------------------------------------------------------------------- /resources/spa/src/components/PortalPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/PortalPanel.vue -------------------------------------------------------------------------------- /resources/spa/src/components/Report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/Report.vue -------------------------------------------------------------------------------- /resources/spa/src/components/Reward.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/Reward.vue -------------------------------------------------------------------------------- /resources/spa/src/components/UserItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/UserItem.vue -------------------------------------------------------------------------------- /resources/spa/src/components/common/NavTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/common/NavTab.vue -------------------------------------------------------------------------------- /resources/spa/src/components/common/message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/common/message.vue -------------------------------------------------------------------------------- /resources/spa/src/components/form/formItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/form/formItem.js -------------------------------------------------------------------------------- /resources/spa/src/components/form/formItem.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/form/formItem.less -------------------------------------------------------------------------------- /resources/spa/src/components/tabs/NavTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/tabs/NavTabs.vue -------------------------------------------------------------------------------- /resources/spa/src/components/tabs/tab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/tabs/tab.vue -------------------------------------------------------------------------------- /resources/spa/src/components/tabs/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/tabs/tabs.less -------------------------------------------------------------------------------- /resources/spa/src/components/tabs/tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/components/tabs/tabs.vue -------------------------------------------------------------------------------- /resources/spa/src/console/get-less-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/console/get-less-variables.js -------------------------------------------------------------------------------- /resources/spa/src/console/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/console/theme.js -------------------------------------------------------------------------------- /resources/spa/src/constants/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/constants/app.js -------------------------------------------------------------------------------- /resources/spa/src/directives/gifPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/directives/gifPlay.js -------------------------------------------------------------------------------- /resources/spa/src/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/directives/index.js -------------------------------------------------------------------------------- /resources/spa/src/easemob/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/easemob/init.js -------------------------------------------------------------------------------- /resources/spa/src/easemob/webim.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/easemob/webim.config.js -------------------------------------------------------------------------------- /resources/spa/src/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/filters.js -------------------------------------------------------------------------------- /resources/spa/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/i18n.js -------------------------------------------------------------------------------- /resources/spa/src/icons/CircleLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/icons/CircleLoading.vue -------------------------------------------------------------------------------- /resources/spa/src/icons/LinearLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/icons/LinearLoading.vue -------------------------------------------------------------------------------- /resources/spa/src/icons/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/icons/iconfont.js -------------------------------------------------------------------------------- /resources/spa/src/images/cert_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/cert_org.png -------------------------------------------------------------------------------- /resources/spa/src/images/cert_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/cert_user.png -------------------------------------------------------------------------------- /resources/spa/src/images/default_topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/default_topic.jpg -------------------------------------------------------------------------------- /resources/spa/src/images/ico_consult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/ico_consult.png -------------------------------------------------------------------------------- /resources/spa/src/images/logo_thinksns+@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/logo_thinksns+@2x.png -------------------------------------------------------------------------------- /resources/spa/src/images/pic_default_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/pic_default_man.png -------------------------------------------------------------------------------- /resources/spa/src/images/pic_default_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/pic_default_secret.png -------------------------------------------------------------------------------- /resources/spa/src/images/pic_default_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/images/pic_default_woman.png -------------------------------------------------------------------------------- /resources/spa/src/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/locales/en.yml -------------------------------------------------------------------------------- /resources/spa/src/locales/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/locales/zh-CN.yml -------------------------------------------------------------------------------- /resources/spa/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/main.js -------------------------------------------------------------------------------- /resources/spa/src/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/mixin.js -------------------------------------------------------------------------------- /resources/spa/src/page/AboutUs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/AboutUs.vue -------------------------------------------------------------------------------- /resources/spa/src/page/ChooseCate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/ChooseCate.vue -------------------------------------------------------------------------------- /resources/spa/src/page/ChooseTags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/ChooseTags.vue -------------------------------------------------------------------------------- /resources/spa/src/page/Discover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/Discover.vue -------------------------------------------------------------------------------- /resources/spa/src/page/Location.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/Location.vue -------------------------------------------------------------------------------- /resources/spa/src/page/PostMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/PostMenu.vue -------------------------------------------------------------------------------- /resources/spa/src/page/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/Settings.vue -------------------------------------------------------------------------------- /resources/spa/src/page/UserFans.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/UserFans.vue -------------------------------------------------------------------------------- /resources/spa/src/page/UserHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/UserHome.vue -------------------------------------------------------------------------------- /resources/spa/src/page/UserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/UserInfo.vue -------------------------------------------------------------------------------- /resources/spa/src/page/article/ArticleCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/article/ArticleCard.vue -------------------------------------------------------------------------------- /resources/spa/src/page/checkin/CheckIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/checkin/CheckIn.vue -------------------------------------------------------------------------------- /resources/spa/src/page/feed/FeedDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/feed/FeedDetail.vue -------------------------------------------------------------------------------- /resources/spa/src/page/feed/FeedList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/feed/FeedList.vue -------------------------------------------------------------------------------- /resources/spa/src/page/find/Find.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/find/Find.vue -------------------------------------------------------------------------------- /resources/spa/src/page/find/FindNer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/find/FindNer.vue -------------------------------------------------------------------------------- /resources/spa/src/page/find/FindNew.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/find/FindNew.vue -------------------------------------------------------------------------------- /resources/spa/src/page/find/FindPop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/find/FindPop.vue -------------------------------------------------------------------------------- /resources/spa/src/page/find/FindRec.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/find/FindRec.vue -------------------------------------------------------------------------------- /resources/spa/src/page/find/SearchUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/find/SearchUser.vue -------------------------------------------------------------------------------- /resources/spa/src/page/group/GroupHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/group/GroupHome.vue -------------------------------------------------------------------------------- /resources/spa/src/page/message/ChatList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/message/ChatList.vue -------------------------------------------------------------------------------- /resources/spa/src/page/message/ChatRoom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/message/ChatRoom.vue -------------------------------------------------------------------------------- /resources/spa/src/page/message/MessageBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/message/MessageBase.vue -------------------------------------------------------------------------------- /resources/spa/src/page/message/MessageHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/message/MessageHome.vue -------------------------------------------------------------------------------- /resources/spa/src/page/message/MessageLikes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/message/MessageLikes.vue -------------------------------------------------------------------------------- /resources/spa/src/page/message/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/message/style.less -------------------------------------------------------------------------------- /resources/spa/src/page/news/NewsDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/news/NewsDetail.vue -------------------------------------------------------------------------------- /resources/spa/src/page/news/NewsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/news/NewsList.vue -------------------------------------------------------------------------------- /resources/spa/src/page/news/NewsSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/news/NewsSearch.vue -------------------------------------------------------------------------------- /resources/spa/src/page/notFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/notFound.vue -------------------------------------------------------------------------------- /resources/spa/src/page/post/PostImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/post/PostImage.vue -------------------------------------------------------------------------------- /resources/spa/src/page/post/PostNews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/post/PostNews.vue -------------------------------------------------------------------------------- /resources/spa/src/page/post/PostText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/post/PostText.vue -------------------------------------------------------------------------------- /resources/spa/src/page/profile/Certificate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/profile/Certificate.vue -------------------------------------------------------------------------------- /resources/spa/src/page/profile/ProfileHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/profile/ProfileHome.vue -------------------------------------------------------------------------------- /resources/spa/src/page/profile/UserFriends.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/profile/UserFriends.vue -------------------------------------------------------------------------------- /resources/spa/src/page/rank/RankIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/rank/RankIndex.vue -------------------------------------------------------------------------------- /resources/spa/src/page/rank/lists/FansList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/rank/lists/FansList.vue -------------------------------------------------------------------------------- /resources/spa/src/page/rank/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/rank/style.less -------------------------------------------------------------------------------- /resources/spa/src/page/sign/ChangePassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/sign/ChangePassword.vue -------------------------------------------------------------------------------- /resources/spa/src/page/sign/Forgot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/sign/Forgot.vue -------------------------------------------------------------------------------- /resources/spa/src/page/sign/Signin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/sign/Signin.vue -------------------------------------------------------------------------------- /resources/spa/src/page/sign/SigninDynamic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/sign/SigninDynamic.vue -------------------------------------------------------------------------------- /resources/spa/src/page/sign/Signup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/sign/Signup.vue -------------------------------------------------------------------------------- /resources/spa/src/page/topic/TopicCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/topic/TopicCreate.vue -------------------------------------------------------------------------------- /resources/spa/src/page/topic/TopicDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/topic/TopicDetail.vue -------------------------------------------------------------------------------- /resources/spa/src/page/topic/TopicHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/topic/TopicHome.vue -------------------------------------------------------------------------------- /resources/spa/src/page/topic/TopicSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/topic/TopicSearch.vue -------------------------------------------------------------------------------- /resources/spa/src/page/wechat/WechatSignin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/wechat/WechatSignin.vue -------------------------------------------------------------------------------- /resources/spa/src/page/wechat/WechatSignup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/page/wechat/WechatSignup.vue -------------------------------------------------------------------------------- /resources/spa/src/plugins/imgCropper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/plugins/imgCropper/index.js -------------------------------------------------------------------------------- /resources/spa/src/plugins/imgLazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/plugins/imgLazy.js -------------------------------------------------------------------------------- /resources/spa/src/plugins/lstore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/plugins/lstore/index.js -------------------------------------------------------------------------------- /resources/spa/src/plugins/lstore/lstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/plugins/lstore/lstore.js -------------------------------------------------------------------------------- /resources/spa/src/plugins/message-box/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/plugins/message-box/index.js -------------------------------------------------------------------------------- /resources/spa/src/plugins/message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/plugins/message/index.js -------------------------------------------------------------------------------- /resources/spa/src/plugins/message/message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/plugins/message/message.vue -------------------------------------------------------------------------------- /resources/spa/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/registerServiceWorker.js -------------------------------------------------------------------------------- /resources/spa/src/routers/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/base.js -------------------------------------------------------------------------------- /resources/spa/src/routers/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/feed.js -------------------------------------------------------------------------------- /resources/spa/src/routers/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/group.js -------------------------------------------------------------------------------- /resources/spa/src/routers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/index.js -------------------------------------------------------------------------------- /resources/spa/src/routers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/message.js -------------------------------------------------------------------------------- /resources/spa/src/routers/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/news.js -------------------------------------------------------------------------------- /resources/spa/src/routers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/post.js -------------------------------------------------------------------------------- /resources/spa/src/routers/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/profile.js -------------------------------------------------------------------------------- /resources/spa/src/routers/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/question.js -------------------------------------------------------------------------------- /resources/spa/src/routers/rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/rank.js -------------------------------------------------------------------------------- /resources/spa/src/routers/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/routes.js -------------------------------------------------------------------------------- /resources/spa/src/routers/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/sign.js -------------------------------------------------------------------------------- /resources/spa/src/routers/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/routers/topic.js -------------------------------------------------------------------------------- /resources/spa/src/stores/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/action.js -------------------------------------------------------------------------------- /resources/spa/src/stores/easemob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/easemob/index.js -------------------------------------------------------------------------------- /resources/spa/src/stores/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/getters.js -------------------------------------------------------------------------------- /resources/spa/src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/index.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/currency.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/feed.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/group.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/index.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/message.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/news.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/post/index.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/question.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/spa/src/stores/module/rank/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/rank/index.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/topic.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/user.js -------------------------------------------------------------------------------- /resources/spa/src/stores/module/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/module/wallet.js -------------------------------------------------------------------------------- /resources/spa/src/stores/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/stores/mutations.js -------------------------------------------------------------------------------- /resources/spa/src/style/animate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/animate.less -------------------------------------------------------------------------------- /resources/spa/src/style/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/base.less -------------------------------------------------------------------------------- /resources/spa/src/style/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/common.less -------------------------------------------------------------------------------- /resources/spa/src/style/moblink.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/moblink.less -------------------------------------------------------------------------------- /resources/spa/src/style/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/reset.less -------------------------------------------------------------------------------- /resources/spa/src/style/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/theme.less -------------------------------------------------------------------------------- /resources/spa/src/style/transition.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/transition.less -------------------------------------------------------------------------------- /resources/spa/src/style/tsplus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/style/tsplus.less -------------------------------------------------------------------------------- /resources/spa/src/util/SendImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/SendImage.js -------------------------------------------------------------------------------- /resources/spa/src/util/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/database.js -------------------------------------------------------------------------------- /resources/spa/src/util/geohash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/geohash.js -------------------------------------------------------------------------------- /resources/spa/src/util/getFirstFrameOfGif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/getFirstFrameOfGif.js -------------------------------------------------------------------------------- /resources/spa/src/util/getMessageUnameTxt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/getMessageUnameTxt.js -------------------------------------------------------------------------------- /resources/spa/src/util/getRedirectUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/getRedirectUrl.js -------------------------------------------------------------------------------- /resources/spa/src/util/imageCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/imageCheck.js -------------------------------------------------------------------------------- /resources/spa/src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/index.js -------------------------------------------------------------------------------- /resources/spa/src/util/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/location.js -------------------------------------------------------------------------------- /resources/spa/src/util/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/markdown.js -------------------------------------------------------------------------------- /resources/spa/src/util/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/prototype.js -------------------------------------------------------------------------------- /resources/spa/src/util/rem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/rem.js -------------------------------------------------------------------------------- /resources/spa/src/util/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/validate.js -------------------------------------------------------------------------------- /resources/spa/src/util/wechat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/wechat.js -------------------------------------------------------------------------------- /resources/spa/src/util/wechatShare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/wechatShare.js -------------------------------------------------------------------------------- /resources/spa/src/util/wechatShareForIOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/util/wechatShareForIOS.js -------------------------------------------------------------------------------- /resources/spa/src/vendor/easemob/AppDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/vendor/easemob/AppDB.js -------------------------------------------------------------------------------- /resources/spa/src/vendor/easemob/WebIM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/vendor/easemob/WebIM.js -------------------------------------------------------------------------------- /resources/spa/src/vendor/easemob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/vendor/easemob/index.js -------------------------------------------------------------------------------- /resources/spa/src/vendor/easemob/listen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/vendor/easemob/listen.js -------------------------------------------------------------------------------- /resources/spa/src/vendor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/src/vendor/index.js -------------------------------------------------------------------------------- /resources/spa/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /resources/spa/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/theme.js -------------------------------------------------------------------------------- /resources/spa/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/vue.config.js -------------------------------------------------------------------------------- /resources/spa/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/spa/yarn.lock -------------------------------------------------------------------------------- /resources/stubs/package/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/.babelrc -------------------------------------------------------------------------------- /resources/stubs/package/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /vendor/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /resources/stubs/package/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/.styleci.yml -------------------------------------------------------------------------------- /resources/stubs/package/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/assets/app.js -------------------------------------------------------------------------------- /resources/stubs/package/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/package.json -------------------------------------------------------------------------------- /resources/stubs/package/resources/stubs/model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/resources/stubs/model -------------------------------------------------------------------------------- /resources/stubs/package/router.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/router.stub -------------------------------------------------------------------------------- /resources/stubs/package/routes/admin.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/routes/admin.stub -------------------------------------------------------------------------------- /resources/stubs/package/routes/api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/routes/api.stub -------------------------------------------------------------------------------- /resources/stubs/package/routes/web.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/routes/web.stub -------------------------------------------------------------------------------- /resources/stubs/package/src/API/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/src/API/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/src/Admin/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/src/Admin/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/src/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/src/Web/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/src/Web/Requests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/stubs/package/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/stubs/package/webpack.mix.js -------------------------------------------------------------------------------- /resources/views/about.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/about.blade.php -------------------------------------------------------------------------------- /resources/views/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/admin.blade.php -------------------------------------------------------------------------------- /resources/views/agreement.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/agreement.blade.php -------------------------------------------------------------------------------- /resources/views/apple-iap-help.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/apple-iap-help.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/currency-developing.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/currency-developing.blade.php -------------------------------------------------------------------------------- /resources/views/developing.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/developing.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/installer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/installer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/bootstrap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/layouts/bootstrap.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/new-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/routes/new-admin.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/routes/web.php -------------------------------------------------------------------------------- /scripts/build-package-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/scripts/build-package-assets.sh -------------------------------------------------------------------------------- /scripts/travis-ci-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/scripts/travis-ci-settings.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !config/ 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/configure/.env.circleci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/storage/configure/.env.circleci -------------------------------------------------------------------------------- /storage/configure/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/storage/configure/.env.example -------------------------------------------------------------------------------- /storage/configure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/storage/configure/.gitignore -------------------------------------------------------------------------------- /storage/configure/plus.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/storage/configure/plus.yml.example -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/API2/AdvertisingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/AdvertisingTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/AuthLoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/AuthLoginTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/AuthLogoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/AuthLogoutTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/AuthRefreshTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/AuthRefreshTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/BootstrappersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/BootstrappersTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/FileUploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/FileUploadTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/FileUploadedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/FileUploadedTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/LocationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/LocationsTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/OrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/OrderTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/RegisterVerifyCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/RegisterVerifyCodeTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/ReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/ReportTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/TagsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/TagsTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/UserCountsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/UserCountsTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/VerifyCodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/VerifyCodeTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/WalletCashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/WalletCashTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/WalletTransferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/WalletTransferTest.php -------------------------------------------------------------------------------- /tests/Feature/API2/WalletTransformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/API2/WalletTransformTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/Auth/JWTAuthTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Unit/Auth/JWTAuthTokenTest.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Unit/Packages/Wallet/OrderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Unit/Packages/Wallet/OrderTest.php -------------------------------------------------------------------------------- /tests/Unit/Packages/Wallet/WalletTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Unit/Packages/Wallet/WalletTest.php -------------------------------------------------------------------------------- /tests/Unit/Support/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/tests/Unit/Support/ConfigurationTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slimkit/plus/HEAD/webpack.mix.js --------------------------------------------------------------------------------