This quickstart is for developers who want to get the Quantum PHP Framework running quickly and understand the basic flow before diving deeper into the documentation.
Make sure you have completed the Installation guide first.
Create a new project using Composer:
composer create-project quantum/project my-projectThe current starter project also runs its post-create setup automatically. On a normal successful install, that setup:
- creates
.env - generates
APP_KEY - installs the demo
WebandApimodules - installs OpenAPI assets/routes for the
Apimodule - publishes DebugBar assets
Then move into the project directory:
cd my-projectRun the built-in development command:
php qt serveIf everything is working correctly, the application should now be available in your browser at the local address shown by the command output.
Open the local project URL in your browser.
If the installation was successful, you should see the starter demo application.
At this point, the important thing is not to learn every framework feature at once.
The goal is simply to confirm three things:
- the framework is installed correctly
- the CLI tooling is working
- the starter project bootstrap steps completed successfully
- the project can run locally in a normal development workflow
Once the project is running, the next step is understanding where the main parts of the application live.
Continue with Project Structure to get a clear overview of how a Quantum PHP Framework project is organized.
A good next path after this page is:
This order helps you move from "the app runs" to "I understand how the framework is put together."