wangaz / laravel-semantic-ui-css
Semantic UI Implementation for Laravel
Installs: 9 967
Dependents: 2
Suggesters: 0
Security: 0
Stars: 15
Watchers: 4
Forks: 3
Open Issues: 2
Language:JavaScript
Provides
- jquery/jquery: 3.2.1
- semantic/ui-css: 2.2.13
This package is auto-updated.
Last update: 2024-11-14 16:53:31 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
- 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 - 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.