├── .distignore ├── .github └── workflows │ └── wordpress.yml ├── .gitignore ├── .svnignore ├── CONTRIBUTORS.md ├── LICENSE ├── bootstrap-for-theme.php ├── bootstrap.php ├── composer.json ├── doc ├── API.md ├── Advanced-Usage.md ├── Common-Usage.md ├── Embedding-within-a-WordPress-Theme.md └── README.md ├── lib ├── Compiler.class.php ├── Configuration.class.php ├── Exception.class.php ├── Garbagecollector.class.php ├── Loader.class.php ├── Plugin.class.php ├── Stylesheet.class.php ├── helper │ └── ThemeHelper.php └── vendor │ └── plugin-toolkit │ ├── BaseConfiguration.class.php │ └── BasePlugin.class.php ├── readme.txt └── screenshot-1.png /.distignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | .idea 4 | DOCKER_ENV 5 | output.log 6 | .github 7 | -------------------------------------------------------------------------------- /.github/workflows/wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/.github/workflows/wordpress.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | .idea 4 | 5 | composer.lock 6 | /vendor/ 7 | -------------------------------------------------------------------------------- /.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/.svnignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/LICENSE -------------------------------------------------------------------------------- /bootstrap-for-theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/bootstrap-for-theme.php -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/composer.json -------------------------------------------------------------------------------- /doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/doc/API.md -------------------------------------------------------------------------------- /doc/Advanced-Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/doc/Advanced-Usage.md -------------------------------------------------------------------------------- /doc/Common-Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/doc/Common-Usage.md -------------------------------------------------------------------------------- /doc/Embedding-within-a-WordPress-Theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/doc/Embedding-within-a-WordPress-Theme.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/doc/README.md -------------------------------------------------------------------------------- /lib/Compiler.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/Compiler.class.php -------------------------------------------------------------------------------- /lib/Configuration.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/Configuration.class.php -------------------------------------------------------------------------------- /lib/Exception.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/Exception.class.php -------------------------------------------------------------------------------- /lib/Garbagecollector.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/Garbagecollector.class.php -------------------------------------------------------------------------------- /lib/Loader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/Loader.class.php -------------------------------------------------------------------------------- /lib/Plugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/Plugin.class.php -------------------------------------------------------------------------------- /lib/Stylesheet.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/Stylesheet.class.php -------------------------------------------------------------------------------- /lib/helper/ThemeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/helper/ThemeHelper.php -------------------------------------------------------------------------------- /lib/vendor/plugin-toolkit/BaseConfiguration.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/vendor/plugin-toolkit/BaseConfiguration.class.php -------------------------------------------------------------------------------- /lib/vendor/plugin-toolkit/BasePlugin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/lib/vendor/plugin-toolkit/BasePlugin.class.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thom4parisot/wp-less/HEAD/screenshot-1.png --------------------------------------------------------------------------------