yaroslavche/bitmasktype

BitMaskType

0.0.1 2019-06-06 08:19 UTC

This package is auto-updated.

Last update: 2024-05-06 22:08:20 UTC


README

Build Status codecov

BitMaskType

BitMask Doctrine Type

Getting Started

For using Doctrine mapping type as bitmask need to register type. See example in Doctrine documentation

For Symfony need only add custom type in Doctrine config:

# config/packages/doctrine.yaml

doctrine:
    dbal:
        types:
            bitmask: BitMask\Doctrine\Types\BitMaskType

Usage example

Installing

Install package via composer

composer require yaroslavche/bitmasktype

Scripts:

Tests

PHPUnit

$ composer phpunit
$ ./vendor/bin/phpunit

Infection (src without mutable code, so infection is disabled)

$ composer infection
$ ./vendor/bin/infection --min-msi=50 --min-covered-msi=70

PHPStan

$ composer phpstan
$ ./vendor/bin/phpstan analyse src/ -c phpstan.neon --level=7 --no-progress -vvv --memory-limit=1024M

PHP-CS

$ composer cscheck
$ ./vendor/bin/phpcs
$ composer csfix
$ ./vendor/bin/phpcbf

Contributing

Feel free to fork or contribute =)

License

This project is licensed under the MIT License - see the LICENSE file for details