mirror of
https://github.com/michaelachrisco/ReadOnlyTraitLaravel.git
synced 2024-10-31 21:33:23 -07:00
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:
parent
96953c0b9c
commit
1cd655670f
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -18,6 +18,6 @@
|
|||
},
|
||||
"require-dev": {
|
||||
"kahlan/kahlan": "^2.4",
|
||||
"illuminate/database": ">=5.2.0"
|
||||
"illuminate/database": "=8.83.23"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue