haoxi911 / laravel-semantic-ui-css

A simple Semantic UI (CSS only) implementation to laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A simple Semantic UI (CSS only) implementation to laravel

License:MIT License


Languages

Language:CSS 52.1%Language:JavaScript 47.9%