PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Filip Štamcar   PHP Configuration Writer   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Configuration Writer
Generate configuration files as PHP scripts
Author: By
Last change:
Date: 5 years ago
Size: 1,773 bytes
 

Contents

Class file image Download
{ "name": "filips123/config-writer", "description": "Lightweight configuration writer for PHP", "keywords": [ "settings", "configuration", "config", "unframework", "microphp" ], "homepage": "https://github.com/filips123/ConfigWriter/", "readme": "README.md", "type": "library", "license": "MIT", "authors": [ { "name": "Filip ?", "email": "projects@filips.si", "homepage": "https://projects.filips.si/" } ], "support": { "email": "projects+config-writer@cms.filips.si", "issues": "https://github.com/filips123/ConfigWriter/issues/", "source": "https://github.com/filips123/ConfigWriter/", "docs": "https://github.com/filips123/ConfigWriter/wiki/" }, "minimum-stability": "RC", "prefer-stable": true, "require": { "php": ">= 5.5.9" }, "require-dev": { "phpunit/phpunit": ">= 4.8.36", "squizlabs/php_codesniffer": "^3.0" }, "autoload": { "psr-4": { "ConfigWriter\\": "src/" } }, "autoload-dev": { "psr-4": { "ConfigWriter\\Tests\\": "tests/" } }, "scripts": { "test": [ "@phpcs", "@phpunit" ], "phpcs": "phpcs", "phpcbf": "phpcbf", "phpunit": "phpunit" }, "scripts-descriptions": { "test": "Checks the coding standard with PHP CodeSniffer and launches the PHPUnit tests.", "phpcs": "Checks the coding standard with PHP CodeSniffer.", "phpcbf": "Fixes the coding standard errors with PHP Code Beautifier and Fixer.", "phpunit": "Launches the PHPUnit tests." } }