mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
fixes #1948 replace cssmin by minify
- switched from cssmin to matthiasmullie/minify for CSS minification. - the minify lib requires the path-converter lib (from the same author), which has been added as well (in include/minify/path-converter). This change is necessary because cssmin is not compatible with PHP 8.4
This commit is contained in:
20
include/minify/src/Exception.php
Normal file
20
include/minify/src/Exception.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Base Exception.
|
||||
*
|
||||
* @deprecated Use Exceptions\BasicException instead
|
||||
*
|
||||
* @author Matthias Mullie <minify@mullie.eu>
|
||||
*/
|
||||
|
||||
namespace MatthiasMullie\Minify;
|
||||
|
||||
/**
|
||||
* Base Exception Class.
|
||||
*
|
||||
* @deprecated Use Exceptions\BasicException instead
|
||||
*
|
||||
* @author Matthias Mullie <minify@mullie.eu>
|
||||
*/
|
||||
abstract class Exception extends \Exception {}
|
||||
Reference in New Issue
Block a user