tseho/symfony-cli-skeleton

Installs: 29

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

pkg:composer/tseho/symfony-cli-skeleton

v2.0.0 2021-11-29 22:14 UTC

This package is auto-updated.

Last update: 2025-09-29 02:44:03 UTC


README

How to use the skeleton

composer create-project --ignore-platform-reqs tseho/symfony-cli-skeleton [directory]

Production

Build the docker image:

DOCKER_IMAGE_NAME=foo DOCKER_IMAGE_VERSION=latest make docker-image

Launch a symfony command with it:

docker run --rm $DOCKER_IMAGE_NAME:$DOCKER_IMAGE_VERSION bin/console [cmd]

Development

Build the development environment:

make build

How to execute a symfony command:

docker-compose run --rm php bin/console [cmd]

How to execute a composer command:

docker-compose run --rm composer [cmd]

How to launch the tests:

make tests