### Install Project Dependencies with Composer Source: https://github.com/bearsunday/bear.qiqmodule/blob/1.x/demo/README.md Installs all required project dependencies as defined in the `composer.json` file. This command should be run after cloning the repository to set up the project environment. ```shell composer install ``` -------------------------------- ### Invoke a GET Request via Composer Source: https://github.com/bearsunday/bear.qiqmodule/blob/1.x/demo/README.md Executes a GET request to the root path (`/`) of the application using Composer's `page` command. This is useful for testing routing or verifying application startup. ```shell composer page get / ``` -------------------------------- ### Common Project Composer Commands Source: https://github.com/bearsunday/bear.qiqmodule/blob/1.x/demo/README.md A collection of frequently used `composer` commands for various development, testing, code quality, and documentation generation tasks within the project. ```shell composer serve // start builtin server composer test // run unit test composer tests // test and quality checks composer coverage // test coverage composer cs-fix // fix the coding standard composer doc // generate API document composer run-script --list // list all commands ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.