drunomics / phapp-cli

Standardized console commands for managing PHP applications.
MIT License
7 stars 3 forks source link

Process command arguments should be inserted as array. #37

Closed arthurlorenz closed 1 year ago

arthurlorenz commented 1 year ago

phapp create was running the command exec 'composer config --global repositories.drunomics composer https://packages.drunomics.com' which failed. I figured it was due to phapp inserting the command with all arguments as a single string, while symfony's process expects it to be an array of arguments.