Yii - 创建扩展

  • 简述

    让我们创建一个显示标准“Hello world”消息的简单扩展。此扩展将通过 Packagist 存储库分发。
    第 1 步-在硬盘中创建一个名为hello-world的文件夹,但不在 Yii 基本应用程序模板中)。在 hello-world 目录中,使用以下代码创建一个名为composer.json的文件。
    
    {
        "name": "jc2182/hello-world",
        "authors": [
            {
                "name": "jc2182"
            }
        ],
        "require": {},
        "autoload": {
            "psr-0": {
                "HelloWorld": "src/"
            }
        }
    }
    
    我们已经声明我们使用的是 PSR-0 标准,所有扩展文件都在src文件夹下。
    第 2 步 - 创建以下目录路径:hello-world/src/HelloWorld
    第 3 步- 在HelloWorld文件夹中,使用以下代码创建一个名为SayHello.php的文件。
    
    <?php
       namespace HelloWorld;
       class SayHello {
          public static function world() {
             return 'Hello World, Composer!';
          }
       }
    ?>
    
    我们定义了一个带有世界静态函数的SayHello类,它返回我们的hello消息。
    第 4 步- 扩展已准备就绪。现在在您的github帐户上创建一个空存储库并将此扩展推送到那里。
    hello-world文件夹中运行 -
    • git init
    • git add
    • git commit -m “initial commit”
    • git remote add origin <YOUR_NEWLY_CREATED_REPOSITORY>
    • git push -u origin master
    推送扩展
    我们刚刚将我们的扩展发送到了github。现在,转到https://packagist.org,登录并单击顶部菜单中的“提交” 。
    您将看到一个页面,您应该在其中输入您的 github 存储库以发布它。
    进入 github 仓库
    第 5 步- 单击“检查”按钮,您的扩展程序已发布。
    扩展发布
    第 6 步- 返回基本应用程序模板。将扩展名添加到composer.json
    
    {
       "name": "yiisoft/yii2-app-basic",
       "description": "Yii 2 Basic Project Template",
       "keywords": ["yii2", "framework", "basic", "project template"],
       "homepage": "http://www.yiiframework.com/",
       "type": "project",
       "license": "BSD-3-Clause",
       "support": {
          "issues": "https://github.com/yiisoft/yii2/issues?state=open",
          "forum": "http://www.yiiframework.com/forum/",
          "wiki": "http://www.yiiframework.com/wiki/",
          "irc": "irc://irc.freenode.net/yii",
          "source": "https://github.com/yiisoft/yii2"
       },
       "minimum-stability": "dev",
       "prefer-stable" : true,
       "require": {
          "php": ">=5.4.0",
          "yiisoft/yii2": ">=2.0.5",
          "yiisoft/yii2-bootstrap": "*",
          "yiisoft/yii2-swiftmailer": "*",
          "kartik-v/yii2-widget-datetimepicker": "*",
          "jc2182/hello-world": "*"
       },
       "require-dev": {
          "yiisoft/yii2-codeception": "*",
          "yiisoft/yii2-debug": "*",
          "yiisoft/yii2-gii": "*",
          "yiisoft/yii2-faker": "*"
       },
       "config": {
          "process-timeout": 1800
       },
       "scripts": {
          "post-create-project-cmd": [
             "yii\\composer\\Installer::postCreateProject"
          ]
       },
       "extra": {
          "yii\\composer\\Installer::postCreateProject": {
             "setPermission": [
                {
                   "runtime": "0777",
                   "web/assets": "0777",
                   "yii": "0755"
                }
             ],
             "generateCookieValidationKey": [
                "config/web.php"
             ]
          },
          "asset-installer-paths": {
             "npm-asset-library": "vendor/npm",
             "bower-asset-library": "vendor/bower"
          }
       }
    }
    
    第 7 步- 在项目根文件夹中,运行composer update以安装/更新所有依赖项。
    运行 Composer 更新
    第 8 步- 应该安装我们的扩展程序。要使用它,请修改SiteController的actionAbout方法的About视图。
    
    <?php
       /* @var $this yii\web\View */
       use yii\helpers\Html;
       $this->title = 'About';
       $this->params['breadcrumbs'][] = $this->title;
       $this->registerMetaTag(['name' => 'keywords', 'content' => 'yii, developing, views,
          meta, tags']);
       $this->registerMetaTag(['name' => 'description', 'content' => 'This is the
          description of this page!'], 'description');
    ?>
    <div class = "site-about">
       <h1><?= Html::encode($this->title) ?></h1>
       <p>
          This is the About page. You may modify the following file to customize its content:
       </p>
       <h1><?= HelloWorld\SayHello::world();  ?></h1>
    </div>
    
    第 9 步-在 Web 浏览器中键入http://localhost:8080/index.php?r=site/about 。您将看到来自我们的扩展程序的hello world消息。
    你好世界消息