🚀 FastCSV Extension v0.0.2
A high-performance CSV parsing extension for PHP.
📦 Available Builds
Linux:
- PHP 8.2:
fastcsv-linux-php8.2.so - PHP 8.3:
fastcsv-linux-php8.3.so - PHP 8.4:
fastcsv-linux-php8.4.so
macOS:
- PHP 8.2:
fastcsv-macos-php8.2.so - PHP 8.3:
fastcsv-macos-php8.3.so - PHP 8.4:
fastcsv-macos-php8.4.so
🔧 Installation
- Download the appropriate file for your platform and PHP version
- Rename the downloaded file to
fastcsv.so - Copy to your PHP extensions directory:
# Find your PHP extension directory php -i | grep extension_dir # Copy and rename (example for Linux PHP 8.2) cp fastcsv-linux-php8.2.so /path/to/extension_dir/fastcsv.so
- Configure your php.ini:
extension=fastcsv.so - Restart your PHP service/server
✅ Verify Installation
# Check if the extension is loaded
php -m | grep fastcsv
# Test basic functionality
php -r "var_dump(extension_loaded('fastcsv'));"📝 Changes in this Release
- Add composer.json and PIE installation instructions; update README for installation guidance (f0b046f)%0A- update readme (4e54f34)
🐛 Issues & Support
If you encounter any issues, please open an issue on GitHub.