PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Smoren Freelight   Nested PHP Accessor   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nested PHP Accessor
Get and set values of nested arrays or objects
Author: By
Last change:
Date: 1 year ago
Size: 1,580 bytes
 

Contents

Class file image Download
{ "name": "smoren/nested-accessor", "description": "Accessor for getting and setting values of nested data structures (arrays or objects)", "keywords": ["nested", "accessor"], "license": "MIT", "authors": [ { "name": "Smoren", "email": "ofigate@gmail.com" } ], "require": { "php": ">=7.4.0", "smoren/type-tools": "^2.0.0", "smoren/extended-exceptions": "^1.0.0" }, "require-dev": { "codeception/codeception": "^4.2.1", "codeception/module-asserts": "^2.0", "php-coveralls/php-coveralls": "^2.0", "squizlabs/php_codesniffer": "3.*", "phpstan/phpstan": "^1.8" }, "autoload": { "psr-4": { "Smoren\\NestedAccessor\\": "src", "Smoren\\NestedAccessor\\Tests\\Unit\\": "tests/unit" } }, "config": { "fxp-asset": { "enabled": false } }, "repositories": [ { "type": "composer", "url": "https://asset-packagist.org" } ], "scripts": { "test-init": ["./vendor/bin/codecept build"], "test-all": ["composer test-coverage", "composer codesniffer", "composer stan"], "test": ["./vendor/bin/codecept run unit tests/unit"], "test-coverage": ["./vendor/bin/codecept run unit tests/unit --coverage"], "test-coverage-html": ["./vendor/bin/codecept run unit tests/unit --coverage-html"], "test-coverage-xml": ["./vendor/bin/codecept run unit tests/unit --coverage-xml"], "codesniffer": ["./vendor/bin/phpcs --ignore=vendor,tests --standard=tests/coding_standard.xml -s ."], "stan": ["./vendor/bin/phpstan analyse -l 9 src"] } }