From 8d3a2eec09c977048a7ee3b486b8c0feef3f5dd2 Mon Sep 17 00:00:00 2001 From: Kevin Porras Date: Fri, 15 Sep 2023 10:31:53 -0600 Subject: [PATCH 1/2] Actually we do not need phpunit. --- src/Commands/ProjectCreateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/ProjectCreateCommand.php b/src/Commands/ProjectCreateCommand.php index dc18ef74..04eefed0 100644 --- a/src/Commands/ProjectCreateCommand.php +++ b/src/Commands/ProjectCreateCommand.php @@ -372,7 +372,7 @@ public function createProject( // If folder does not exists, assume we need to install composer deps. // Require basic testing general packages. - exec("composer --working-dir=$siteDir require --no-update --dev dealerdirect/phpcodesniffer-composer-installer squizlabs/php_codesniffer phpunit/phpunit"); + exec("composer --working-dir=$siteDir require --no-update --dev dealerdirect/phpcodesniffer-composer-installer squizlabs/php_codesniffer"); exec("composer --working-dir=$siteDir config allow-plugins.dealerdirect/phpcodesniffer-composer-installer true"); // Require behat related general packages. exec("composer --working-dir=$siteDir require --no-update --dev behat/behat behat/mink dmore/behat-chrome-extension genesis/behat-fail-aid jcalderonzumba/mink-phantomjs-driver mikey179/vfsstream"); From 068eca44e070ebe7222c700b893f645248b9b527 Mon Sep 17 00:00:00 2001 From: Kevin Porras Date: Mon, 18 Sep 2023 14:31:38 -0600 Subject: [PATCH 2/2] Update ssh key. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6dcf56ea..ca970878 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,7 +72,7 @@ jobs: command: echo "StrictHostKeyChecking no" >> "$HOME/.ssh/config" - add_ssh_keys: fingerprints: - - "74:82:8b:ea:78:ad:23:23:68:70:b6:07:5c:2b:4b:e0" + - "cb:92:c4:59:07:7f:6c:3d:1b:92:e7:6c:8a:da:3f:b2" - run: name: Test D9 with GitHub command: ./.circleci/test-github-repo.sh "d9" @@ -165,7 +165,7 @@ jobs: command: echo "StrictHostKeyChecking no" >> "$HOME/.ssh/config" - add_ssh_keys: fingerprints: - - "74:82:8b:ea:78:ad:23:23:68:70:b6:07:5c:2b:4b:e0" + - "cb:92:c4:59:07:7f:6c:3d:1b:92:e7:6c:8a:da:3f:b2" - run: name: Test WordPress with GitHub command: ./.circleci/test-github-repo.sh "pantheon-systems/example-wordpress-composer:dev-master" --use-ssh