承接 luyadev/luya-composer 相关项目开发

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

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

luyadev/luya-composer

最新稳定版本:1.1.2

Composer 安装命令:

composer require luyadev/luya-composer

包简介

LUYA composer core

README 文档

README

Build Status Test Coverage Total Downloads Latest Stable Version Join the chat at https://gitter.im/luyadev/luya

Following Tasks are done by the luya composer task:

  • Provides the symlink to the bin file inside the root directory of the application.
  • Bind blocks into the system without a module
  • Add files to the LUYA Bootstrapping process.

In order to enable luya extra section in your package, the package type must be either luya-extension or luya-module.

An example of define a blocks folder inside your composer json file.

"type" : "luya-extension",
"extra" : {
    "luya" : {
        "blocks": [
            "path/to/blocks",
            "path/to/one/Block.php"
        ],
        "bootstrap": [
            "namespace\\to\\my\\BootstrapFile"
        ]
    }
}

LUYA will now import those blocks when running the import command.

For root packages there is a symlink property available inside luya section of extra in order to disable the symlink of luya binary into application folder.

Local Testing for Composer Plugin Development

In order to test the luya composer plugins you have to create a new folder outside of the current luya-composer folder and include the the composer package with a composer.json as following:

{
    "minimum-stability" : "dev",
    "repositories": [
        {
            "type": "path",
            "url": "../luya-composer"
        }
    ],
    "require": {
        "luyadev/luya-composer": "*"
    }
}

Then you can create a test.sh file to test the plugin process like

#!/bin/bash

rm -rf vendor
rm -r composer.lock
composer update -v

Give the script test.sh the permissions with chmod +x test.sh and now run

./test

In order to test the installer events you have to create a sub package like

{
    "name" : "my/test",
    "extra" : {
        "luya" : {
            "blocks": [
                "path/to/blocks/*"
            ]
        }
    }
}

The sub package must be linked in your local testing composer.json

{
    "minimum-stability": "dev",
    "repositories": [
        {
            "type": "path",
            "url": "../luya-composer"
        }
        {
            "type": "path",
            "url": "../path/to/my/test/package"
        }
    ],
    "require": {
        "luyadev/luya-composer": "*",
        "my/test" : "*"
    },
    "extra" : {
        "luya" : {
            "blocks": [
                "path/to/blocks/*"
            ]
        }
    }
}

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-05-02