careset/zermelo_installer

此包已被废弃且不再维护。未建议替代包。

Zermelo的安装包

v1.1.1 2021-03-26 12:37 UTC

This package is auto-updated.

Last update: 2021-05-26 12:58:56 UTC


README

此仓库旨在方便安装各种Zermelo包。见:https://github.com/CareSet/Zermelo

此包的composer.json文件包含其require部分的全部composer包,因此当安装此包时,也将引入以下包:

  • Zermelo - 后端API
  • ZermeloBladeTabular - DataTables表格界面
  • ZermeloBladeCard - 卡片界面
  • ZermeloBladeTreeCard - 树形卡片界面
  • ZermeloBladeGraph - 图形界面(仅私有)

当你运行'php artisan zermelo:install'时,此包将随后调用上述所有子包的安装程序。

关于此仓库分支的说明

  • "master" - 需要 composer.json 中 zermelo* 包的官方 Packagist 版本
  • "develop" - 需要 dev-master 分支 注意 必须在根目录 composer.json 中添加仓库

为了使 composer 从 github 检出开发分支源代码,你必须在根目录 composer.json 文件中包含以下 repositories 部分。

  "repositories": [
    {
      "type": "git",
      "url":"https://github.com/CareSet/Zermelo.git"
    },
    {
      "type": "git",
      "url": "https://github.com/CareSet/ZermeloBladeTabular.git"
    },
    {
      "type": "git",
      "url": "https://github.com/CareSet/ZermeloBladeCard.git"
    },
    {
      "type": "git",
      "url": "https://github.com/CareSet/ZermeloBladeTreeCard.git"
    },
    {
      "type": "git",
      "url": "https://github.com/CareSet/ZermeloBladeGraph.git"
    }
  ],