PHP 8.6.0 Beta 3 is available for testing

Installation

Yaconf can be installed in one of three ways: via PECL, via PIE, or by building it from source.

This » PECL extension is not bundled with PHP.

Information for installing this PECL extension may be found in the manual chapter titled Installation of PECL extensions. Additional information such as new releases, downloads, source files, maintainer information, and a CHANGELOG, can be located here: » https://pecl.php.net/package/yaconf.

Windows binaries (DLL files) for this PECL extension are available from the PECL website.

Example #1 Installing Yaconf with PECL

pecl install yaconf

Since Yaconf 1.2.0, the extension can be installed with » PIE, the PHP Installer for Extensions, by running the following on the command line.

Example #2 Installing Yaconf with PIE

pie install laruence/yaconf

The source code is hosted on » GitHub. To build the extension from source, run the following on the command line, replacing the paths with those of the local PHP installation.

Example #3 Building Yaconf from source

/path/to/phpize
./configure --with-php-config=/path/to/php-config
make && make install
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top