PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Miraz Mac   PHP DotEnv File Writer   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP DotEnv File Writer
Manage configuration files in the dotenv format
Author: By
Last change:
Date: 2 years ago
Size: 1,024 bytes
 

Contents

Class file image Download
{ "name": "mirazmac/dotenvwriter", "type": "library", "description": "A PHP library to write values to .env (DotEnv) files", "keywords": [ "env", "dot env", "dot env writer", "environment", "variables" ], "homepage": "https://mirazmac.com", "license": "MIT", "authors": [ { "name": "Miraz Mac", "email": "mirazmac@gmail.com", "homepage": "https://mirazmac.com", "role": "Original Author" } ], "require": { "php": ">=7.0" }, "autoload": { "psr-4": { "MirazMac\\DotEnv\\": "src/" } }, "autoload-dev": { "psr-4": { "MirazMac\\DotEnv\\Tests\\": "tests" } }, "config": { "sort-packages": true }, "require-dev": { "vlucas/phpdotenv": "^5.3", "phpunit/phpunit": "^6" }, "scripts": { "phpunit": "vendor/bin/phpunit --configuration phpunit.xml" } }