barbosa/hackpack 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

barbosa/hackpack

Composer 安装命令:

composer require barbosa/hackpack

包简介

Invoking objects in function style

README 文档

README

Installation

To install via composer (http://getcomposer.org/), place the following in your composer.json file:

{
    "require": {
        "barbosa/hackpack": "dev-master"
    }
}

or download package from github.com:

http://github.com/barbosa89/hackpack

Configuration

Consider the following folder structure:

/project
    /src
        MainClass.php
        Router.php
        TextProcessing.php
        Request.php
        services.php
    /test

The services.php file, returns an array with an alias and the corresponding namespace and the following sintax:

<?php 

/**
 * file: services.php
 */

return [

    'router' => Some\Namespace\Router::class,
    'text' => Some\Namespace\TextProcessing::class,
    'request' => Some\Namespace\Request::class  

];

In the MainClass.php file, invoke to ServiceLoader::load() method:

<?php

namespace Some\Namespace;

use Barbosa\HackPack\ServiceLoader;

class MainClass
{
    public function __construct
    {
        $services = require 'services.php';
        ServiceLoader::load($services);
    }
}

The ServiceLoader::load() method loads the objects in function style, wich are available in the application.

Now you can invoke services in functions style from anywhere in the application. Example:

<?php

namespace Some\Namespace;

use Barbosa\HackPack\ServiceLoader;

class MainClass
{
    public function __construct
    {
        $aliases = require 'services.php';
        ServiceLoader::load($services);
    }

    public function resolveUri($uri)
    {
        return request()->parseUri($uri);
    }
}

The object name in function style, depends on the name assigned in the array. This is an alternative to Packager Library.

Examples

# Pass parameters to the constructor
request($uri)->parseUri();

# Pass parameters to methods
request()->parseUri($uri);

# Chaining of methods
request()->parseUri($uri)->getResult();

Contribute

  1. Check for open issues or open a new issue to start a discussion around a bug or feature.
  2. Fork the repository on GitHub to start making your changes.
  3. Write one or more tests for the new feature or that expose the bug.
  4. Make code changes to implement the feature or fix the bug.
  5. Send a pull request to get your changes merged and published.

Thanks...

Omar Andrés Barbosa

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: GLP-3.0
  • 更新时间: 2017-01-02

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固