pfazzi/isbn-doctrine
Composer 安装命令:
composer require pfazzi/isbn-doctrine
包简介
Allow the use of a pfazzi/isbn as Doctrine field type.
README 文档
README
The pfazzi/isbn-doctrine package provides the ability to use pfazzi/isbn as a Doctrine field type.
Installation
The preferred method of installation is via Packagist and Composer. Run
the following command to install the package and add it as a requirement to
your project's composer.json:
composer require pfazzi/isbn-doctrine
Examples
Configuration
To configure Doctrine to use pfazzi/isbn as a field type, you'll need to set up the following in your bootstrap:
\Doctrine\DBAL\Types\Type::addType('isbn', 'Pfazzi\Isbn\Doctrine\IsbnType');
In Symfony:
# app/config/config.yml doctrine: dbal: types: isbn: Pfazzi\Isbn\Doctrine\IsbnType
Then, in your models, you may annotate properties by setting the @Column
type to isbn. Doctrine will handle the rest.
/** * @ORM\Entity() */ class Book { /** * @ORM\Id() * @ORM\Column(type="isbn") * * @var Isbn */ private $isbn; public function __construct(Isbn $isbn) { $this->isbn = $isbn; } public function getIsbn(): Isbn { return $this->isbn; } }
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-05-13