承接 php-prefixer/prefixed-illuminate-support 相关项目开发

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

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

php-prefixer/prefixed-illuminate-support

Composer 安装命令:

composer require php-prefixer/prefixed-illuminate-support

包简介

The Prefixed Illuminate Support package.

README 文档

README

Prefixed Illuminate Support

Prefixed Illuminate Support

PHP-Prefixer and Prefixed Illuminate Support are not affiliated with or endorsed by Laravel. The original Illuminate Support repository can be found here: https://github.com/illuminate/support

Use Prefixed Libraries in your Laravel projects

The Illuminate Support component is one of the core Laravel packages. It provides essential functionality used across the platform.

PHP-Prefixer is a service to apply PHP prefixes to namespaces, functions, helpers, traits, interfaces, etc. You start with a Composer project and a set of dependencies and prefix all library files at once to generate a consistent prefixed codebase. PHP-Prefixer abstracts the complexity of manually applying prefixes to PHP files. The service automates and streamlines the process of prefixing while providing the scalability and simplicity of serverless computing.

The Prefixed Illuminate Support can be used in several scenarios such as system migrations, multiple PHP versions support, modernization of codebases, and more. The package contains the prefixed 6.x, 7.x, and 8.x branches. A project can simultaneously use any of these branches or the latest Illuminate Support library.

By default, the branches are prefixed in this way:

  • Laravel Illuminate Support 6.x: prefix PPP_L6
  • Laravel Illuminate Support 7.x: prefix PPP_L7
  • Laravel Illuminate Support 8.x: prefix PPP_L8

The PHP Prefixer Build Action prefixes the Illuminate Support 6.x, 7.x, and 8.x branches. The action configuration can be found here: .github/workflows/illuminate-support-6.x.yml, .github/workflows/illuminate-support-7.x.yml and .github/workflows/illuminate-support-8.x.yml.

Sample Project with Prefixed Illuminate Support 6.x

The sample_laravel_6 project shows the most straightforward case to use the prefixed Laravel Illuminate Support 6.x:

/**

$ composer install
$ php test.php

Sample date: 2021-12-17 12:00:24

*/
require_once __DIR__.'/vendor/autoload.php';

use PPP_L6\Carbon\CarbonImmutable;
use PPP_L6\Illuminate\Support\Collection;

$immutableDate = CarbonImmutable::now();

Collection::make([$immutableDate])->each(function ($date) {
    echo "\nSample date: {$date->toDateTimeString()}\n\n";
});

Sample Project with Prefixed Illuminate Support 6.x and 8.x

The sample_laravel_6_and_8 project shows a case to use the prefixed Laravel Illuminate Support 6.x and 8.x at the same time:

/**

$ env COMPOSER=composer_laravel_6.json composer install
$ env COMPOSER=composer_laravel_8.json composer install
$ php test.php

Sample date: 2021-12-17 12:00:24

*/
require_once __DIR__.'/vendor_laravel_6/autoload.php';
require_once __DIR__.'/vendor_laravel_8/autoload.php';

use PPP_L6\Carbon\CarbonImmutable;
use PPP_L8\Illuminate\Support\Collection;

$immutableDate = CarbonImmutable::now();

Collection::make([$immutableDate])->each(function ($date) {
    echo "\nSample date: {$date->toDateTimeString()}\n\n";
});

Additional Links

Authors

License

MIT License Copyright (c) 2021 PHP-Prefixer.

php-prefixer/prefixed-illuminate-support 适用场景与选型建议

php-prefixer/prefixed-illuminate-support 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 12 月 17 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 php-prefixer/prefixed-illuminate-support 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-12-17