Symfony 4: каталог DataFixtures не найден - PullRequest
0 голосов
/ 01 ноября 2019

Я использую Symfony 4

Я создал марку под названием Ad: entity с помощью этого комманда php bin / console make: entity

Ad.php

<?php

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
* @ORM\Entity(repositoryClass="App\Repository\AdRepository")
*/
class Ad
{
 /**
 * @ORM\Id()
 * @ORM\GeneratedValue()
 * @ORM\Column(type="integer")
 */
private $id;

/**
 * @ORM\Column(type="string", length=255)
 */
private $title;

/**
 * @ORM\Column(type="string", length=255)
 */
private $slug;

/**
 * @ORM\Column(type="float")
 */
private $price;

/**
 * @ORM\Column(type="text")
 */
private $introduction;

/**
 * @ORM\Column(type="text")
 */
private $content;

/**
 * @ORM\Column(type="string", length=255)
 */
private $coverImage;

/**
 * @ORM\Column(type="integer")
 */
private $rooms;

public function getId(): ?int
{
    return $this->id;
}

public function getTitle(): ?string
{
    return $this->title;
}

public function setTitle(string $title): self
{
    $this->title = $title;

    return $this;
}

public function getSlug(): ?string
{
    return $this->slug;
}

public function setSlug(string $slug): self
{
    $this->slug = $slug;

    return $this;
}

public function getPrice(): ?float
{
    return $this->price;
}

public function setPrice(float $price): self
{
    $this->price = $price;

    return $this;
}

public function getIntroduction(): ?string
{
    return $this->introduction;
}

public function setIntroduction(string $introduction): self
{
    $this->introduction = $introduction;

    return $this;
}

public function getContent(): ?string
{
    return $this->content;
}

public function setContent(string $content): self
{
    $this->content = $content;

    return $this;
}

public function getCoverImage(): ?string
{
    return $this->coverImage;
}

public function setCoverImage(string $coverImage): self
{
    $this->coverImage = $coverImage;

    return $this;
}

public function getRooms(): ?int
{
    return $this->rooms;
}

public function setRooms(int $rooms): self
{
    $this->rooms = $rooms;

    return $this;
}
}

И я хочу использовать пакет: orm-fixtures

, поэтому я запустил эту команду: composer требуют orm-fixtures --dev

Но я не вижу DataFixtures в моем проектепапка, скриншот: https://user.oc -static.com / upload / 2019/11/01 / 15726034821433_Screenshot% 20 от% 202019-11-01% 2011-12-38.png

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...