Skip to content

Commit

Permalink
fix(composer): Update illuminate database to fix ci issues (#42)
Browse files Browse the repository at this point in the history
* fix(composer): Update illuminate database to fix ci issues
* fix(circleci): Use 8.0version of php to handle laravel database issue
  • Loading branch information
michaelachrisco authored Aug 22, 2022
1 parent 96953c0 commit 1cd6556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ version: 2.1
jobs:
build_php_version:
docker:
- image: circleci/php:7.3
- image: cimg/php:8.0.20
working_directory: ~/ReadOnlyTraitLaravel
steps: # a set of executable commands
- checkout
- run: sudo composer self-update
- run: composer install -n --prefer-dist
- run: composer install -n --prefer-dist --no-plugins
- run: ./vendor/bin/kahlan -reporter=verbose
build_latest:
docker:
Expand All @@ -17,7 +17,7 @@ jobs:
steps: # a set of executable commands
- checkout
- run: sudo composer self-update
- run: composer install -n --prefer-dist
- run: composer install -n --prefer-dist --no-plugins
- run: ./vendor/bin/kahlan -reporter=verbose
workflows:
version: 2
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
},
"require-dev": {
"kahlan/kahlan": "^2.4",
"illuminate/database": ">=5.2.0"
"illuminate/database": "=8.83.23"
}
}

0 comments on commit 1cd6556

Please sign in to comment.