This is the source code for the PHP RADIUS extension.
You can install the extension through PECL:
pecl install radius
For more information on using PECL, please see the PHP manual.
As this extension is self contained, you can build it very easily, provided you have a PHP build environment:
phpize
./configure
make
sudo make install
echo extension=radius.so | sudo tee -a $(php --ini | head -1 | cut -d: -f 2- | cut -c 2-)/php.ini
You can also run the test suite with make test
.
The PHP manual includes a section on this extension.
Pull requests and bug reports are most welcome through GitHub.