如何在PHP项目中安装和使用Composer包?

如何在PHP项目中安装和使用Composer包?插图1

在我的上一篇文章中,我解释了如何在 php 中安装和使用 composer。今天,我们将学习如何在 php 项目中安装 composer 包。我们需要安装的包是collections和 pestphp/pest.

搜索包

打开浏览器并导航至 ( https://packagist.org/ )

搜索收藏。向下滚动找到照明/收藏包。我们将安装这个包。

安装包

打开终端并运行composer命令来检查composer是否已安装。如果是,请运行composer search collections 来搜索集合包,并提供可用的集合包列表。然后,运行composer requireillumination/collections来安装包。

立即学习“PHP免费学习笔记(深入)”;

使用包

要使用包,我们必须在public目录中创建一个新文件playground.php,并添加以下代码来过滤小于或等于5的数字:

<?php use illuminate\support\collection;
require __dir__.'/../vendor/autoload.php';

$numbers = new collection([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
$lessthanorequalto5 = $numbers->filter(fn($number) =&gt; $number 



<p>在终端中运行 php public/playground.php 可以看到过滤后数字的输出。</p>

<h2>
  
  
  安装害虫包
</h2>

<p>要安装 pestphp/pest 包,请运行 composer search test 屏幕上显示的测试包列表,然后选择其中一个测试包。然后,运行composer require pestphp/pest --dev 将软件包安装为开发依赖项。</p>

<h2>
  
  
  配置 pest 包
</h2>

<p>要配置 pest 包,请运行 phpvendor/bin/pest --init 命令。这会将composer.json 文件更新为:<br></p>

<pre class="brush:php;toolbar:false">{
    "name": "admin/demo",
    "authors": [
        {
            "name": "ghulam mujtaba",
            "email": "mujtabaofficial247@gmail.com"
        }
    ],
    "require": {
        "illuminate/collections": "^11.16"
    },
    "autoload": {
        "psr-4": {

            "core\\": "core/"  ,
        "http\\": "http/"          }
    
    },
    "require-dev": {
        "pestphp/pest": "^2.34"
    },
    "config": {
        "allow-plugins": {
            "pestphp/pest-plugin": true
        }
    }
}

登录后复制

并使用文件exampletest.php创建一个新目录tests。

<?php test('example', function(){

    expect(true)->tobetrue();
});

登录后复制

运行测试

我们必须在终端中运行 phpvendor/bin/pest 命令才能看到测试文件的输出。如果将 true 替换为 false,您将看到一条错误消息。

结合测试

让我们对容器进行本地绑定测试,因为问题已经解决了。因此,重命名文件 containertest.php 并将代码替换为:

<?php use Core\Container;
test('it can resolve something out of the container', function () {
    $container = new Container();
    $container->bind('foo', fn()=&gt; 'foo');
    $result = $container-&gt;resolve('foo');
    expect($result)-&gt;toEqual('foo');
});

登录后复制

要测试在终端/提示符中再次运行 phpvendor/bin/pest 命令,它会显示输出,因为文件中没有错误

我希望你已经清楚地理解了。

以上就是如何在PHP项目中安装和使用Composer包?的详细内容,更多请关注至强加速其它相关文章!

本文来源于互联网,如若侵权,请联系管理员删除,本文链接:https://www.9969.net/27805.html

沫沫沫沫
上一篇 2024年7月25日 10:50
下一篇 2024年7月25日 10:50

相关推荐