├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Autoprefixer.php ├── Compile ├── AtRule.php ├── DeclarationBlock.php └── RuleSet.php ├── Parse ├── Property.php ├── Rule.php └── Selector.php ├── Vendor.php └── Vendor ├── IE.php ├── Mozilla.php ├── Vendor.php └── Webkit.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/composer.json -------------------------------------------------------------------------------- /src/Autoprefixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Autoprefixer.php -------------------------------------------------------------------------------- /src/Compile/AtRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Compile/AtRule.php -------------------------------------------------------------------------------- /src/Compile/DeclarationBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Compile/DeclarationBlock.php -------------------------------------------------------------------------------- /src/Compile/RuleSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Compile/RuleSet.php -------------------------------------------------------------------------------- /src/Parse/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Parse/Property.php -------------------------------------------------------------------------------- /src/Parse/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Parse/Rule.php -------------------------------------------------------------------------------- /src/Parse/Selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Parse/Selector.php -------------------------------------------------------------------------------- /src/Vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Vendor.php -------------------------------------------------------------------------------- /src/Vendor/IE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Vendor/IE.php -------------------------------------------------------------------------------- /src/Vendor/Mozilla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Vendor/Mozilla.php -------------------------------------------------------------------------------- /src/Vendor/Vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Vendor/Vendor.php -------------------------------------------------------------------------------- /src/Vendor/Webkit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/padaliyajay/php-autoprefixer/HEAD/src/Vendor/Webkit.php --------------------------------------------------------------------------------