From f65c32b7f94908917b83b11418b8b354ff31b7d8 Mon Sep 17 00:00:00 2001 From: michaelachrisco Date: Wed, 17 Jan 2024 12:11:19 -0800 Subject: [PATCH] fix(circleci): Library should work with php 8.3 --- .circleci/config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5bec7cc..f610186 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,9 +19,19 @@ jobs: - run: sudo composer self-update - run: composer install -n --prefer-dist --no-plugins - run: ./vendor/bin/kahlan -reporter=verbose + build_php_version_83: + docker: + - image: cimg/php:8.3.0 + working_directory: ~/ReadOnlyTraitLaravel + steps: # a set of executable commands + - checkout + - run: sudo composer self-update + - run: composer install -n --prefer-dist --no-plugins + - run: ./vendor/bin/kahlan -reporter=verbose workflows: version: 2 build: jobs: - build_php_version_81 - build_php_version_82 + - build_php_version_83