承接 haakco/laravel-enum-generator 相关项目开发

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

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

haakco/laravel-enum-generator

最新稳定版本:v6.0.1

Composer 安装命令:

composer require haakco/laravel-enum-generator

包简介

Generates simple class to act as an enum from a table specified in its con

README 文档

README

Latest Version on Packagist Total Downloads Build Status StyleCI

This is where your description should go. Take a look at contributing.md to see a to do list.

Installation

Via Composer

$ composer require haakco/laravel-enum-generator --dev

Configuration for local environment only

If you wish to enable generators only for your local environment, you should install it via composer using the --dev option like this:

composer require haakco/laravel-enum-generator --dev

Then you'll need to register the provider in app/Providers/AppServiceProvider.php file.

public function register()
{
    if ($this->app->environment() == 'local') {
        $this->app->register(\HaakCo\LaravelEnumGenerator\LaravelEnumGeneratorServiceProvider::class);
    }
}

Usage

Copy the config over

php artisan vendor:publish --provider="HaakCo\LaravelEnumGenerator\LaravelEnumGeneratorServiceProvider"

Edit the config file enum-generator.php to specify which tables to use to generate the files.

Now run the following to re-create your models.

php artisan modelEnum:create

Configuration

The config/enum-generator.php file supports the following options:

Global Options

Option Default Description
use-enum-format true Use PHP 8.1+ enum format (vs legacy class constants)
default-leave-schema false Include schema name in generated class name
default-uuid false Include UUID field in generated enums
id-field 'id' Default column name for enum values
name-field 'name' Default column name for enum case names
default-prepend_class '' Prefix for generated class names
default-prepend_name '' Prefix for generated enum case names
enumPath app_path() . '/Models/Enums' Output directory for generated files
default-order-by ['name', 'id'] Default ordering for enum cases

Per-Table Options

Each table in the tables array can have these options:

'tables' => [
    'public.statuses' => [
        'uuid' => false,
        'leave-schema' => true,
        'prepend-class' => 'App',
        'prepend-name' => 'Status',
        'id-field' => 'id',
        'name-field' => 'name',
        'order-by' => ['name' => 'asc'],
        'where' => [
            'is_active' => true,
            'type' => 'public',
        ],
    ],
],

Filtering Rows with where

Use the where option to filter which database rows become enum cases. This is useful when:

  • You have duplicate values and need to filter by another column
  • You only want active/enabled records
  • You need to limit enums to a specific type or category
'tables' => [
    // Only generate enums for active permissions
    'permissions' => [
        'where' => [
            'is_active' => true,
        ],
    ],

    // Only generate enums where type equals 'system'
    'categories' => [
        'where' => [
            'type' => 'system',
            'deleted_at' => null,
        ],
    ],
],

The where option accepts an associative array where keys are column names and values are matched with equality (=). Multiple conditions are combined with AND.

Change log

Please see the changelog for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email tim@haak.co instead of using the issue tracker.

Credits

License

mit. Please see the license file for more information.

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: mit
  • 更新时间: 2020-01-24

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固