samovar/composer-plugin

Composer plugin for php projects

Maintainers

Package info

github.com/samovar/composer-plugin

Type:composer-plugin

pkg:composer/samovar/composer-plugin

Statistics

Installs: 11

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.2.0 2020-05-14 20:09 UTC

This package is auto-updated.

Last update: 2026-03-16 06:59:42 UTC


README

Configure symfony application

# https://symfony.com/download
symfony new --full app && \
cd app && \
composer require "php:^7.4" && \
composer update --with-all-dependencies && \
bin/phpunit && \
composer configure --no-backup && \
vendor/bin/php-cs-fixer fix && \
vendor/bin/phpstan analyze && \
git add --all && \
git commit -m "Init"