PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon Config   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Jaxon Config
Save configuration values in immutable objects
Author: By
Last change:
Date: 8 days ago
Size: 1,121 bytes
 

Contents

Class file image Download
{ "name": "jaxon-php/jaxon-config", "type": "library", "description": "Save config options in immutable objects.", "authors": [ {"name": "Thierry Feuzeu"} ], "homepage": "https://www.jaxon-php.org", "license": "BSD-3-Clause", "keywords": ["Config", "Options", "Immutable"], "support": { "issues": "https://github.com/jaxon-php/jaxon-config/issues", "source": "https://github.com/jaxon-php/jaxon-config" }, "require": { "php": ">=8.0", "ext-json": "*" }, "require-dev": { "phpunit/phpunit": "^9.5", "php-coveralls/php-coveralls": "^2.5", "phpunit/phpcov": "^8.2" }, "autoload": { "psr-4": { "Jaxon\\Config\\": "src/" } }, "autoload-dev": { "psr-4": { "Jaxon\\Config\\Tests\\": "tests/" } }, "scripts": { "test": [ "@clearCache", "@putenv XDEBUG_MODE=coverage", "vendor/bin/phpunit" ], "clearCache": "rm -rf cache/*" } }