samovar/composer-plugin

Composer plugin for php projects

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 1

Open Issues: 1

Type:composer-plugin

1.2.0 2020-05-14 20:09 UTC

This package is auto-updated.

Last update: 2024-05-16 02:55:02 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"