Remove dependency on Sass

- Convert *.sass files to vanilla CSS
- Start using CSS variables
- Add PHP minifier
This commit is contained in:
Frédéric Guillot
2019-07-25 11:16:21 -07:00
parent 2bf0f99b51
commit 9ae185c18e
138 changed files with 5649 additions and 2203 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace MatthiasMullie\PathConverter;
/**
* Convert file paths.
*
* Please report bugs on https://github.com/matthiasmullie/path-converter/issues
*
* @author Matthias Mullie <pathconverter@mullie.eu>
* @copyright Copyright (c) 2015, Matthias Mullie. All rights reserved
* @license MIT License
*/
interface ConverterInterface
{
/**
* Convert file paths.
*
* @param string $path The path to be converted
*
* @return string The new path
*/
public function convert($path);
}