PHP Package: kriswallsmith/assetic

Asset management library for PHP applications, streamlining asset optimization and caching for better performance.

Current Version: 1.4.0
Last Updated: 2016-11-11
PHP Requirement: >=5.3.1
Dependencies:
symfony/console
symfony/finder
symfony/process
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Assetic is a PHP library that simplifies asset management by combining and compressing CSS and JavaScript files, reducing page load times. It supports source maps and provides a powerful asset pipeline for web applications.

🔗 View on GitHub

Download Latest Version: 1.4.0

Download Download v1.4.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/kriswallsmith/assetic/1.4.0/loader.php';
require_once 'libs/symfony/console/7.3.4/loader.php';
require_once 'libs/symfony/finder/7.3.2/loader.php';
require_once 'libs/symfony/process/7.3.4/loader.php';

use Assetic\Asset\AssetCollection;
use Assetic\Filter\CssMinFilter;

$obj = new AssetCollection();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.