On this page
Installation
Composer is the recommended installation path.
composer require batoi/aifZIP Or Drop-In Install
Use ZIP/drop-in installation only when the target project does not use Composer.
Recommended approach:
- download the GitHub ZIP
- place the package in a controlled application library path
- load the bundled autoloader supplied by the package
- keep the package version visible in deployment notes
Verification
After installation:
php -v
php -m | grep curl
php -r "require 'vendor/autoload.php'; echo class_exists('Batoi\\\\Aif\\\\Gateway\\\\AifGateway') ? 'ok' : 'missing';"Adjust the autoload path for ZIP/drop-in deployments.