承接 pointybeard/laravel-sku 相关项目开发

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

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

pointybeard/laravel-sku

Composer 安装命令:

composer require pointybeard/laravel-sku

包简介

A Laravel package for generating SKU codes via regular expressions.

README 文档

README

A Laravel package for generating SKU codes from regular expressions.

Installation

This library is installed via Composer. To install, use composer require pointybeard/laravel-sku.

Requirements

This library requires PHP 8.2 or greater.

Usage

Adding SKUs to Models

Use the HasSku trait in your Eloquent model to automatically generate SKUs. You can customize options like the regex pattern, uniqueness enforcement, and the database column for storing SKUs directly in your model properties.

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use pointybeard\LaravelSku\Traits\HasSku;

class Product extends Model
{
    use HasSku;

    protected $fillable = ['title', 'sku'];

    protected $skuPattern = '[A-Z]{3}-[0-9]{4}'; // Custom regex pattern

    protected $skuUnique = true; // Enforce unique SKUs

    protected $skuColumn = 'sku'; // Column to store the SKU
}

$product = Product::create([
    'title' => 'Board Game',
]);

echo $product->sku;
// e.g. AUSJ-9276

Configuration

The default configuration can be found in config/laravel-sku.php. You can override it by publishing the configuration file.

Supported Regular Expression Syntax

The supported regular expression syntax for SKU generation is documented on the ReverseRegex GitHub page.

This package relies on the ReverseRegex library for regex-based string generation, so please refer to that documentation for details on the syntax and capabilities.

Advanced Usage

You can use the SkuService directly to generate SKUs for non-model contexts or other custom workflows. Pass configuration options and an optional uniqueness checker to the service.

<?php

use pointybeard\LaravelSku\Facades\Sku;

echo Sku::generate('[A-Z]{3}-\d');
// e.g. "FKS-8"

echo Sku::generate(
    pattern: 'ABC-[A-Z]{4}-[0-9]{4}',
    validator: fn ($sku): bool => !in_array($sku, ['ABC-GAMI-1234', 'ABC-LAPT-5678'])
);

// e.g. "ABC-UJSO-2837"

Support

If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.

Contributing

We encourage you to contribute to this project. Please check out the Contributing documentation for guidelines about how to get involved.

Acknowledgments

This package draws inspiration from the binary-cats/laravel-sku package. We appreciate their foundational work, which served as a reference for some of the concepts implemented here.

License

"Laravel SKU" is released under the MIT License.

pointybeard/laravel-sku 适用场景与选型建议

pointybeard/laravel-sku 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 02 月 08 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 pointybeard/laravel-sku 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 pointybeard/laravel-sku 我们能提供哪些服务?
定制开发 / 二次开发

基于 pointybeard/laravel-sku 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-08