PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Axel Pardemann   PHP Primitive Types Class   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Primitive Types Class
Manipulate PHP primitive value types as objects
Author: By
Last change: Reorder composer scripts

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Update packages

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Add composer insights to composer check script

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Reorganize the whole project

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Merge branch 'master' into develop

Add StringObject::plural and StringObject::singular extension methods

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Update norse-blue/extensible-objects package

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Merge branch 'develop' into feature/merge-numeric-types
Add PHPInsights

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Add SimpleArray class

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Update README file

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Move extensions namespace

# Explain why this change is being made

# Provide links to any relevant tickets, articles or other resources
Date: 16 hours ago
Size: 2,189 bytes
 

Contents

Class file image Download
{ "name": "norse-blue/prim", "description": "PHP Primitive Objects", "keywords": ["primitive", "data", "data-types", "object", "scalars"], "homepage": "https://norse.blue/open-source/php-prim", "license": "MIT", "support": { "issues": "https://github.com/norse-blue/php-prim/issues", "source": "https://github.com/norse-blue/php-prim" }, "authors": [ { "name": "Axel Pardemann", "email": "[email protected]" } ], "minimum-stability": "dev", "prefer-stable": true, "config": { "preferred-install": "dist", "sort-packages": true, "optimize-autoloader": true }, "require": { "php": "^7.3", "ext-bcmath": "*", "ext-json": "*", "ext-mbstring": "*", "doctrine/inflector": "^1.3", "moontoast/math": "^1.1", "norse-blue/extensible-objects": "^0.5", "ramsey/uuid": "^3.8", "symfony/finder": "^4.3" }, "require-dev": { "nunomaduro/phpinsights": "^1.5", "phpstan/phpstan": "^0.11.8", "phpunit/phpunit": "^8.1", "squizlabs/php_codesniffer": "^3.4" }, "autoload": { "files": [ "src/bootstrap.php" ], "psr-4": { "NorseBlue\\Prim\\": "src/" } }, "autoload-dev": { "psr-4": { "NorseBlue\\Prim\\Tests\\": "tests/" } }, "scripts": { "analyse": [ "vendor/bin/phpstan analyse --ansi" ], "check": [ "composer style-check", "composer analyse", "composer insights", "composer test" ], "insights": [ "vendor/bin/phpinsights --ansi --no-interaction" ], "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" ] } }