wangaz / laravel-semantic-ui-css by Wangaz

Semantic UI Implementation for Laravel
9,642
15
4
Package Data
Maintainer Username: Wangaz
Package Create Date: 2015-10-06
Package Last Update: 2017-11-07
Language: JavaScript
License: MIT
Last Refreshed: 2024-04-17 15:09:42
Package Statistics
Total Downloads: 9,642
Monthly Downloads: 58
Daily Downloads: 2
Total Stars: 15
Total Watchers: 4
Total Forks: 4
Total Open Issues: 2

laravel Semantic UI CSS package

This laravel package provides Semantic-UI-CSS to your laravel project.

Requirements

  • laravel (version 5.0 or higher) OR lumen (5.0 or higher)

Installation

  1. Use composer to get this package composer require wangaz/laravel-semantic-ui-css or add "wangaz/laravel-semantic-ui-css": ">=0.3" to your composer.json file
  2. Add to your composer.json: (You may need to insert some code parts to existing code)
    "scripts": {
      "post-update-cmd": [
        "mkdir -p public/assets",
        "ln -sf ../../vendor/wangaz/laravel-semantic-ui-css/src/assets/jquery public/assets/jquery",
        "ln -sf ../../vendor/wangaz/laravel-semantic-ui-css/src/assets/semantic-ui public/assets/semantic-ui"
      ]
    }

Run composer update via CLI

Hints

  • If you are updating your laravel app via composer, this package will also be updated. You won't have to run the vendor:publish, this will be done automatically.