定制 angle/architect 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

angle/architect

Composer 安装命令:

composer require angle/architect

包简介

Agile development suite for Laravel.

README 文档

README

Software architecture library for the Laravel Framework.

Introduction

Architect provides an expressive way to organize and generate boilerplate classes that will hold your application's business logic. The goal of this package is to implement a component-oriented back-end architecture. By using decoupled components, you may reuse parts of your code accross multiple services (Controllers and various API endpoints).

Architect will create tests for each classes it generates, encouraging a Test-Driven Development approach within your team.

Installation

Composer

First, add the Architect package to your dependencies:

composer require angle/architect

Run The Architect Installer

To finish the installation process and configure the package, use the architect:install Artisan command:

php artisan architect:install

Generating Sprints

To create a sprint, use the make:sprint Artisan command:

php artisan make:sprint "Create new user"

The new sprint will be placed in your sprints directory (you can set it either during installation, either by editing config/architect.php). Each sprint file name contains a timestamp which allows Laravel to determine the order of the sprints.

Sprint Structure

A sprint class contains one method: run. This method is used to generate new features, tasks, and tests for each of these.

Within this method you may use the Architect code Blueprint to expressively create new classes.

<?php

use Angle\Architect\Sprint;
use Angle\Architect\Code\Blueprint;
use Angle\Architect\Facades\Architect;

class CreateNewUserSprint extends Sprint
{
    /**
     * Runs the sprint.
     *
     * @return void
     */
    public function run()
    {
        Architect::feature('Create new user', function (Blueprint $code) {
            $code->task('validate request')->expect('request')->return('is valid');
            $code->task('save user')->expect('request')->return('user');
            $code->task('send email to administrators')->expect('user');
        });
    }
}

Running Sprints

To run all of your sprints, execute the sprint Artisan command:

php artisan sprint

Pretending To Run Sprints

You can safely test your sprint by running the sprint Artisan command with the --pretend option:

php artisan sprint --pretend

Forcing Sprints To Overwrite Existing Files

You can force the overwriting of existing files by running the sprint Artisan command with the --force option:

php artisan sprint --force

Rolling Back Sprints

Just like you do with Laravel Migrations, you can rollback sprints. This will remove any file generated by the last batch. Note: you can also append the --pretend option in order to preview changes.

php artisan sprint:rollback

angle/architect 适用场景与选型建议

angle/architect 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6 次下载、GitHub Stars 达 2, 最近一次更新时间为 2018 年 11 月 18 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 angle/architect 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-11-18