0

我最近向我正在开发的 PHP 应用程序上传了一个新依赖项,现在我在 Postman 中不断收到以下错误

致命错误:在第13行 的/var/www/html/api/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php中找不到接口“Psr\Container\ContainerInterface”

我已经更新了作曲家以及许多其他内容,但似乎仍然无法确定问题所在。(也不确定这是否意味着错误是 index.php 文件或 container.php 文件)

这是 container.interface.php 文件中的代码

<?php
/**
 * @license http://www.opensource.org/licenses/mit-license.php MIT 
(see the LICENSE file)
 */

namespace Interop\Container;

use Psr\Container\ContainerInterface as PsrContainerInterface;

/**
 * Describes the interface of a container that exposes methods to 
   read its entries.
 */
   interface ContainerInterface extends PsrContainerInterface
   {
   }

这是我的 index.php 文件中的初始代码

<?php

ini_set('display_errors', 1);

// Include the SDK using the Composer autoloader
require 'vendor/autoload.php';
use Kreait\Firebase\Factory;
use Kreait\Firebase\ServiceAccount;

// Includes ;
require_once( 'config/database.php' );
require_once( 'controller/base.php' );



//$app = new Slim\App();
 $app = new Slim\App(['settings' => ['displayErrorDetails' => true]]);

 $twilio = new Twilio\Rest\Client(TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN);
     $serviceAccount = ServiceAccount::fromJsonFile('my_file.json');
     $firebase = (new Factory)->withServiceAccount($serviceAccount)-
      >withDatabaseUri('my_firebase_website')->create();
4

1 回答 1

0

解决方案:我正在使用 filezilla 从本地计算机上的供应商文件夹中传输更新的依赖项,并且在此过程中我下载了错误的 autoload.php 文件

于 2017-09-27T21:08:44.660 回答