承接 joynala/web-installer 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

joynala/web-installer

最新稳定版本:v2.4.5.6

Composer 安装命令:

composer require joynala/web-installer

包简介

This is a laravel web installer and builder

README 文档

README

GitHub issues GitHub forks GitHub stars GitHub license

Welcome to Web Installer, a Laravel package designed to make setting up your app fun and easy. Imagine setting up your app as quickly as a spaceship launch. That's what we offer – a quick and enjoyable setup process. Get ready for a smooth ride.

📋 System Requirements

  • Laravel: Version 10.x
  • PHP: Version 8.2 or more
  • API: Internet access for checking Envato purchases

🌈 Features

  • 🚀 Quick Setup: Get your app running super fast.
  • 🎨 Fully Customizable: Change it up to make it fully yours.
  • ✨ Easy-to-use UI: A user interface so easy, you'll get it right away.
  • 🔐 Envato Purchase Check: Stops unauthorized use by checking purchases.
  • 🕵️‍♂️ No Nulled Versions: Keeps your code safe from being used without permission.
  • 🛠️ Perfect for Developers: Make changes to fit your needs.
  • ⚙️ Simple Configuration: Setting things up is super easy.

🚀 Getting Started

Prerequisites

Make sure you have Laravel version 10.x or newer.

Installation

  1. Add the package using Composer:
composer require joynala/web-installer
  1. Publish the package's resources:
php artisan vendor:publish --tag=web-installer-config
  1. In your AppServiceProvider, in the boot method, add:
if(!$this->app->runningInConsole()){
    if (!file_exists(base_path('storage/installed')) && !request()->is('install') && !request()->is('install/*')) {
        header("Location: install");
        exit;
    }
}

🛡️ Envato Purchase Check

Keep your app safe from unauthorized use by turning on Envato purchase checks.

Configuration

Find these settings in config/installer.php:

'product' => '', // Your product's name.
'verify_code' => '', // A secret code.
'verify_purchase' => true, // Turn on purchase checks.
'verify_rules' => [
    // Rules for checking.
]

🎭 Keeping Your Code Safe

After checking:

  1. Use php artisan make:json your file directory to create a JSON file.
  2. Store this file on your secure server.
  3. Give users access and directions after they pass the check:
  • the response for 200 status
[
    'permission' => true,
    'restore' => [
        [
            'dir' => 'e.g., routes/web.php',
            'source_code' => file_get_contents('path/to/your/json'),
        ],
    ]
]
  • the response for 422 status
[
    'permission' => false,
    'message' => 'You provide a wrong purchase code.'
]

🌟 Contributing

Anyone can help make this project better. Fork the project, make your changes, and send us a pull request. Found a problem? Tell us here.

👥 Contributors

Thanks to these wonderful people:

Joynal Abedin Arafat Hossain

📜 License

This project is under the MIT license.

Reach the Creator

统计信息

  • 总下载量: 3.78k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 14
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 14
  • Watchers: 0
  • Forks: 8
  • 开发语言: Blade

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-02-19