PHP Classes

File: composer.json

Recommend this page to a friend!
  Packages of Reinder Reinders   PHP Binary Flags   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Binary Flags
Manage a group of boolean flags using integers
Author: By
Last change: Prepare v2.1.0 release (#15)

* Update testing tools

* Update workflow for parallel tests

* Add named enum flags and split tests

* Add enum mask conversion guide

* Document enum conversion example

* Run pint

* Add phpstan templates for enum flags and mask typing

* Add additional coverage tests for enum and mask edge cases

* Fix docblock and reducer order

* Fix enum flag docblock and reducer

* Correct flag traits docblocks
Deprecate 8.0 and tests for PHP 8.3, 8.4 & 8.5 (#14)
Date: 1 month ago
Size: 968 bytes
 

Contents

Class file image Download
{ "name": "reinder83/binary-flags", "description": "Useful class for binary operations", "keywords": [ "binary", "flags", "class", "trait", "eloquent", "model", "bitwise", "bitwiser", "operations" ], "homepage": "https://github.com/reinder83/binary-flags", "minimum-stability": "stable", "license": "MIT", "authors": [ { "name": "Reinder Reinders", "email": "reinder.reinders@gmail.com" } ], "autoload": { "psr-4": { "Reinder83\\BinaryFlags\\": "src/" } }, "config": { "platform": { "php": "8.2" }, "allow-plugins": { "pestphp/pest-plugin": true } }, "require": { "php": "^8.2", "ext-json": "*" }, "require-dev": { "phpstan/phpstan": "^1.10", "pestphp/pest": "^2.36", "laravel/pint": "^1", "rector/rector": "^1" }, "autoload-dev": { "psr-4": { "Reinder83\\BinaryFlags\\Tests\\": "tests/" } } }