PHP code example of padaliyajay / php-autoprefixer
1. Go to this page and download the library: Download padaliyajay/php-autoprefixer library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
padaliyajay / php-autoprefixer example snippets
use Padaliyajay\PHPAutoprefixer\Autoprefixer;
$unprefixed_css = file_get_contents('main.css'); // CSS code
$autoprefixer = new Autoprefixer($unprefixed_css);
$prefixed_css = $autoprefixer->compile();