This package provides the compiled Tabler UI assets (CSS, JS, fonts, etc.) for PHP projects that do not use NPM or Webpack.
It is designed to work with frameworks like Slim, Laravel, Symfony, or any plain PHP setup.
You can install it via Composer and automatically copy the assets into your public directory using post-install scripts.
After installation, you'll find the following folders inside:
vendor/argora/tabler-assets/public/
βββ css/
βββ js/
βββ img/
βββ libs/- Require the package via Composer:
composer require argora/tabler-assets- Add the following to your
composer.jsonto automatically copy the assets to yourpublic/directory:
"scripts": {
"post-install-cmd": [
"@copy-tabler"
],
"post-update-cmd": [
"@copy-tabler"
],
"copy-tabler": [
"mkdir -p public/assets",
"cp -r vendor/argora/tabler-assets/public/* public/assets/"
]
}- Reference the assets in your HTML or Twig templates:
<link rel="stylesheet" href="/assets/css/tabler.min.css">
<script src="/assets/js/tabler.min.js"></script>To get the latest version of the assets:
composer update argora/tabler-assetsThis will pull any new versions and re-copy the assets if you have the scripts configured.
- Version: 1.4.0
- License: MIT
- Source: https://github.com/tabler/tabler
This package redistributes the compiled output from the official Tabler UI project.
It is not affiliated with the Tabler authors.
All original rights and credit belong to the Tabler team. This package simply makes the compiled output accessible via Composer for projects that do not use NPM.
This package and the original Tabler code are distributed under the MIT License.
Tabler is Β© the original authors at https://github.com/tabler/tabler.
This package simply republishes their compiled output for convenience in Composer-based PHP workflows.