PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Axel Pardemann   PHP Regular Expression Functions Extension   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Regular Expression Functions Extension
Extend a string type with regular expression match
Author: By
Last change:
Date: 4 years ago
Size: 2,061 bytes
 

Contents

Class file image Download
{ "name": "norse-blue/string-extensions-regex", "description": "PHP String Extensions Regex is a PHP library that contains regex extension methods for norse-blue/scalar-objects StringType object.", "keywords": ["scalar", "object", "string", "extension", "regex", "regular", "expression"], "homepage": "https://norse.blue/open-source/php-string-extensions-regex", "license": "MIT", "support": { "issues": "https://github.com/norse-blue/php-string-extensions-regex/issues", "source": "https://github.com/norse-blue/php-string-extensions-regex" }, "authors": [ { "name": "Axel Pardemann", "email": "axel.pardemann@norse.blue" } ], "minimum-stability": "dev", "prefer-stable": true, "config": { "preferred-install": "dist", "sort-packages": true, "optimize-autoloader": true }, "require": { "php": "^7.3", "norse-blue/scalar-objects": "dev-master", "symfony/finder": "^4.3" }, "require-dev": { "nunomaduro/phpinsights": "^1.6", "phpstan/phpstan": "^0.11.8", "phpunit/phpunit": "^8.2", "squizlabs/php_codesniffer": "^3.4" }, "autoload": { "files": [ "src/bootstrap.php" ], "psr-4": { "NorseBlue\\StringExtensions\\Regex\\": "src/" } }, "autoload-dev": { "psr-4": { "NorseBlue\\StringExtensions\\Regex\\Tests\\": "tests/" } }, "scripts": { "analyse": "vendor/bin/phpstan analyse --ansi", "check": [ "@style:check", "@analyse", "@insights", "@test" ], "check:coverage": [ "@style:check", "@analyse", "@insights", "@test:coverage" ], "insights": "vendor/bin/phpinsights --no-interaction --ansi", "insights:verbose": "vendor/bin/phpinsights --no-interaction --ansi --verbose", "style:check": "vendor/bin/phpcs", "style:fix": "vendor/bin/phpcbf", "test": "vendor/bin/phpunit --colors=always", "test:coverage": "vendor/bin/phpunit --colors=always --coverage-clover=./build/coverage.xml --coverage-html=./build/coverage" } }