Contribution Guide

How to Contribute

  1. Create a new folder package into the root of your existing laravel project
  2. Clone the repository into package folder
    git clone https://github.com/developermithu/tallcraftui.git
  3. Modify composer.json
    // Change `stable` to `dev`
    "minimum-stability": "dev",
     
    // Add this
    "repositories": {
    "developermithu/tallcraftui": {
    "type": "path",
    "url": "package/tallcraftui",
    "options": {
    "symlink": true
    }
    }
    },
  4. Require the package for local symlink
    composer require developermithu/tallcraftui
  5. Edit the tailwind.config.js inserting this content
    export default {
    content: [
    // ...
     
    "./vendor/developermithu/tallcraftui/src/View/Components/**/*.php",
    ],
    };
  6. Start the developmemt server
    pnpm dev
Code highlighting powered by Torchlight