gollumsf / doctrine-tinyint
A tinyint type for Doctrine MYSQL
Installs: 34 264
Dependents: 1
Suggesters: 0
Security: 0
Stars: 7
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: >=7.0
- doctrine/dbal: ^2|^3
README
A tinyint type for Doctrine MYSQL
Installation:
composer require gollumsf/doctrine-tinyint
Configuration:
doctrine: dbal: types: tinyint: GollumSF\Doctrine\TinyInt
Usage:
namespace App\Entity; use Doctrine\ORM\Mapping as ORM; use GollumSF\Doctrine\TinyInt; #[ORM\Entity] #[ORM\Table(name: 'entities')] class Entity { #[Column(name: 'tinyint', type: TinyInt::TINYINT)] private int $tinyint; ///////// // ... // ///////// }