我一直在玩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"
}
}
}
的index.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的变体,但仍然没有成功,任何帮助将不胜感激。
更新: user.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;
}
}
答案 0 :(得分:0)
调整自动加载配置以使用PSR-4自动加载器而不是PSR-0自动加载器:
{
"autoload": {
"psr-4":{
"App\\": "src/App/"
}
}
}