fix(composer): Update illuminate database to fix ci issues (#42)

* fix(composer): Update illuminate database to fix ci issues
* fix(circleci): Use 8.0version of php to handle laravel database issue
This commit is contained in:
michaelachrisco 2022-08-22 09:49:47 -07:00 committed by GitHub
parent 96953c0b9c
commit 1cd655670f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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:
@ -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

View file

@ -18,6 +18,6 @@
},
"require-dev": {
"kahlan/kahlan": "^2.4",
"illuminate/database": ">=5.2.0"
"illuminate/database": "=8.83.23"
}
}