بنقرة واحدة
dev-commands
Daily development commands for Sylius Stack apps (database, cache, assets, QA)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Daily development commands for Sylius Stack apps (database, cache, assets, QA)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Implement the fix described in a GitHub issue and open a Pull Request that closes it
Apply the latest review feedback to a Pull Request and push it to the PR branch
Add an admin autocomplete form type for a Sylius Resource (translatable or not), optionally injected into another form via an extension
Add an admin FormType for an existing Sylius Resource
Add a Sylius admin grid for an existing Sylius Resource
Add a multiple images collection (OneToMany) to an existing Sylius Resource
| name | dev-commands |
| description | Daily development commands for Sylius Stack apps (database, cache, assets, QA) |
| allowed-tools | Bash, Read |
Docker is used only for the PostgreSQL database. PHP runs locally via symfony serve.
| Action | Command |
|---|---|
| Start | docker compose up -d |
| Stop | docker compose down |
| Stop + remove volumes | docker compose down -v |
symfony serve -d # start in background
symfony serve:stop # stop
bin/console cache:clear
bin/console debug:router
bin/console debug:container <service>
bin/console sylius:debug:resource 'App\Entity\{ModelName}'
| Action | Command |
|---|---|
| Generate migration | bin/console make:migration |
| Apply migrations | bin/console doctrine:migrations:migrate --no-interaction |
| Drop + create + migrate | bin/console doctrine:database:drop --force && bin/console doctrine:database:create && bin/console doctrine:migrations:migrate --no-interaction |
| Load fixtures | bin/console doctrine:fixtures:load --no-interaction |
bin/console importmap:install # install JS packages
bin/console asset-map:compile # production build
vendor/bin/phpstan analyse # static analysis
vendor/bin/ecs check # coding standards
vendor/bin/phpunit # unit tests