### Start Development Server with Yarn Source: https://github.com/robsontenorio/mary/blob/main/README.md This command initiates the development server using Yarn, typically used for compiling assets and providing a live-reloading environment for UI development within the maryUI package. ```bash yarn dev ``` -------------------------------- ### Clone maryUI Repository for Local Development Source: https://github.com/robsontenorio/mary/blob/main/README.md This command clones the maryUI repository into a local directory, typically inside your application's root, to facilitate local development and contributions. ```bash git clone git@github.com:robsontenorio/mary.git ``` -------------------------------- ### Configure Composer for Local maryUI Repository Source: https://github.com/robsontenorio/mary/blob/main/README.md This JSON configuration snippet modifies your application's `composer.json` file. It sets the minimum stability to 'dev' and adds a path repository entry, allowing Composer to symlink the locally cloned maryUI package instead of downloading it from Packagist. ```json "minimum-stability": "dev", "repositories": { "robsontenorio/mary": { "type": "path", "url": "/path/to/mary", "options": { "symlink": true } } } ``` -------------------------------- ### Require maryUI Package Locally via Composer Source: https://github.com/robsontenorio/mary/blob/main/README.md After configuring the `composer.json` for a local path repository, this command instructs Composer to require the maryUI package. Due to the path repository setting, Composer will create a symlink to your local maryUI clone. ```bash composer require robsontenorio/mary ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.