maryUI v2 released! Upgrade guide

Contributing

Please, consider adding RTL support when submitting new components. See this post Tailwind Simplified RTL support with logical properties. Here is an example of refactoring PR.

Components

Clone the repository into some folder inside your app.

git clone git@github.com:robsontenorio/mary.git

Change composer.json from your app.

"minimum-stability": "dev", // <- change to "dev"
 
// Add this block
"repositories": {
"robsontenorio/mary": {
"type": "path",
"url": "/var/www/app/packages/mary", // <- change the path
"options": {
"symlink": true
}
}
}

Require the package again for local symlink.

composer require robsontenorio/mary

Start the dev server.

yarn dev

Docs

This website is made with Laravel, Livewire Volt and maryUI.

git clone git@github.com:robsontenorio/mary-ui.com.git

Create the .env from .env.example.

cp .env .env.example

Install, migrate and start.

composer start

See http://localhost:8018


Made with by Robson TenĂ³rio and contributors.