Skip to content
Merged
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ blocks:
- name: Laravel 7-ish
commands:
- bash bin/restore-cache-and-update-deps 7
- composer run-script test
- composer run-script test

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need these changes here? Looks like just whitespace.

5 changes: 3 additions & 2 deletions bin/restore-cache-and-update-deps
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ case ${1} in
;;

*)
printf "\nError: Specify either 5, 6 or 7 for Laravel version\n"
printf "\nError: Specify either 5, 6, or 7 for Laravel version\n"
exit 1
;;
esac
Expand All @@ -33,4 +33,5 @@ composer require laravel/framework=${laravel_version}
composer u

echo "Attempt to store cache in case of an initial miss"
cache store $KEY ./vendor
cache store $KEY ./vendor

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"require": {
"php": ">=5.6.0",
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"workos/workos-php": "^2.1.0"
"workos/workos-php": "^v3.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15 || ^3.6",
Expand Down