Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use composer as root for install #20

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions conf.d/main
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ symfony new $WEBROOT --version=lts --no-git
chown -R www-data:www-data $WEBROOT
cd $WEBROOT
export COMPOSER_NO_INTERACTION=1
turnkey-composer require symfony/apache-pack
turnkey-composer require symfony/orm-pack
turnkey-composer require --dev symfony/maker-bundle
export COMPOSER_ALLOW_SUPERUSER=1
composer require symfony/apache-pack
composer require symfony/orm-pack
composer require --dev symfony/maker-bundle

# for some reason, the symfony/apache-pack doesn't install when run
# non-interactively, so we'll manually download the .htaccess file
Expand Down