gpt4 book ai didi

php - Composer 自动加载命名空间错误

转载 作者:行者123 更新时间:2023-12-04 16:57:16 28 4
gpt4 key购买 nike

我一直在玩 Slim 3 和 Doctrine,但没有取得太大进展,因为我一生都无法弄清楚为什么这不起作用。

项目结构:

-src
|-App
|-index.php
|-Entity
|-User.php

|-vendor

Composer .json
{
"require": {
"slim/slim": "^3.9",
"doctrine/orm": "v2.5.9"
},
"autoload": {
"psr-0":{
"App\\": "src/App"
}
}
}

索引.php
<?php
use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;
use App\Entity\User;

require '../vendor/autoload.php';

$user = new User();

....

但这导致
Fatal error: Class 'App\Entity\User' not found...

我已经使用 psr-4 尝试了一些变体,但仍然没有成功,任何帮助将不胜感激。

更新:
用户名.php

namespace App\Entity;

use App\Entity;
use Doctrine\ORM\Mapping;

/**
* @Entity
* @Table(name="users")
*/
class User
{
/**
* @var integer
*
* @Id
* @Column(name="id", type="integer")
* @GeneratedValue(strategy="AUTO")
*/
protected $id;

/**
* @var string
* @Column(type="string", length=64)
*/
protected $name;

/**
* @return int
*/
public function getId()
{
return $this->id;
}

/**
* @param int $id
*/
public function setId($id)
{
$this->id = $id;
}

/**
* @return string
*/
public function getName()
{
return $this->name;
}

/**
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}


}

最佳答案

调整自动加载配置以使用 PSR-4 自动加载器而不是 PSR-0 自动加载器:

{
"autoload": {
"psr-4":{
"App\\": "src/App/"
}
}
}

引用 https://getcomposer.org/doc/04-schema.md#psr-4 .

关于php - Composer 自动加载命名空间错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47464464/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com