frickelbruder/php-ini-setter

A tool to adjust php.ini settings

1.3.1 2018-06-16 23:11 UTC

This package is not auto-updated.

Last update: 2024-09-29 23:19:50 UTC


README

Add or update php.ini settings from the command line.

This tool is useful in an CI/CD environment to adjust the ini-settings according to your needs

##Installation

###Phar Simply donwload the latest release at https://github.com/frickelbruder/php-ini-setter/releases

###Composer

php composer.phar global require "frickelbruder/php-ini-setter":"dev-master"

##Usage

sudo php-ini-setter --name $settingToChange --value $valueToSetTheValueTo --file $pathToIniFile

or (with phar)

sudo php-ini-setter.phar --name $settingToChange --value $valueToSetTheValueTo --file $pathToIniFile
  • sudo is required, if your current user is not allowed to write to the ini file.
  • vendor/bin/ is the path to your composer bin directory.