### Install TheDragonCode Support Package Source: https://github.com/thedragoncode/support/blob/main/README.md This snippet shows how to install the TheDragonCode Support package using Composer, the dependency manager for PHP. It ensures you have the latest stable version of the package in your project. ```bash composer require dragon-code/support ``` -------------------------------- ### Contributing to TheDragonCode Support Package Source: https://github.com/thedragoncode/support/blob/main/README.md Guidelines for developers wishing to contribute to the TheDragonCode Support package. It outlines the process for adding new methods or classes, including specifying method names and parameters in dock blocks, and creating corresponding unit tests. ```php namespace DragonCode\Support\Facades; class SomeFacade { /** * @method static string someMethod(string $param1, int $param2) */ protected static function getFacadeAccessor() { // ... } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.