wangaz/laravel-semantic-ui-css

Semantic UI Implementation for Laravel

Installs: 9 641

Dependents: 2

Suggesters: 0

Security: 0

Stars: 15

Watchers: 4

Forks: 4

Open Issues: 2

Language:JavaScript

1.3.0 2017-09-25 13:14 UTC

This package is auto-updated.

Last update: 2024-04-14 15:26:54 UTC


README

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.