From 4ea1056b5662441586c291330495799d7408ae84 Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 25 Dec 2022 10:29:04 +0100 Subject: [PATCH 1/7] Update ci.yml --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad7e665..b3d7d0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,3 +36,7 @@ jobs: - name: Execute PHP CS Fixer review run: composer run csfix-review + - name: test Ibis execution + run: | + - ./ibis init + - ./ibis sample From 40063f5513e26ad0b335a706eda8ff7f76c610a1 Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 25 Dec 2022 10:30:38 +0100 Subject: [PATCH 2/7] Update ci.yml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3d7d0e..5d65a55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,5 +38,5 @@ jobs: run: composer run csfix-review - name: test Ibis execution run: | - - ./ibis init - - ./ibis sample + - php ibis init + - php ibis sample From 08ab4238e82f288b55b5084fabe3bb8ebad99303 Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 25 Dec 2022 10:33:59 +0100 Subject: [PATCH 3/7] Update ci.yml --- .github/workflows/ci.yml | 38 +++++++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d65a55..8d49d58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: [ '8.2','8.1' ] + php-versions: [ '8.2' ] name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}} steps: # This is required as this package does not support PHP 8 (yet) @@ -36,7 +36,39 @@ jobs: - name: Execute PHP CS Fixer review run: composer run csfix-review + + check-ibis: + runs-on: ubuntu-latest + strategy: + matrix: + operating-system: [ubuntu-latest] + php-versions: [ '8.2','8.1', '8.0' ] + name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}} + steps: + # This is required as this package does not support PHP 8 (yet) + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Get Composer Cache Directory + id: composer-cache + run: | + echo "::set-output name=dir::$(composer config cache-files-dir)" + - name: Use Composer Cache + uses: actions/cache@v3 + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-composer- + - name: Composer Install + run: "composer install --no-ansi --no-interaction --no-scripts --prefer-dist" + - name: test Ibis execution run: | - - php ibis init - - php ibis sample + ./ibis init + ./ibis sample From 1a5054e2a39a4108de3106c46bc793a136acfc86 Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 25 Dec 2022 10:36:00 +0100 Subject: [PATCH 4/7] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d49d58..d156cff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: restore-keys: | ${{ runner.os }}-composer- - name: Composer Install - run: "composer install --no-ansi --no-interaction --no-scripts --prefer-dist" + run: "composer update" - name: test Ibis execution run: | From e69bada7034f72a486c78265fd01555dfe358e57 Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 25 Dec 2022 10:42:33 +0100 Subject: [PATCH 5/7] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d156cff..ca8fde4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,5 +70,6 @@ jobs: - name: test Ibis execution run: | + mkdir export ./ibis init ./ibis sample From 39ae134c13fe0bc2a8a1bb9d1684f7a2288d0a7d Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 25 Dec 2022 10:47:16 +0100 Subject: [PATCH 6/7] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca8fde4..bdd4a41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,4 +72,4 @@ jobs: run: | mkdir export ./ibis init - ./ibis sample + ./ibis build From 11e8b6124a6ae1e19ab85fdff8870bf3394892aa Mon Sep 17 00:00:00 2001 From: Edwin Heij Date: Wed, 22 Mar 2023 21:38:17 +0100 Subject: [PATCH 7/7] Laravel 10 support --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 4b4874c..2f0e497 100644 --- a/composer.json +++ b/composer.json @@ -19,8 +19,8 @@ "ibis" ], "require": { - "illuminate/filesystem": "^7.0|^8.0|^9.0", - "illuminate/support": "^7.0|^8.0|^9.0", + "illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0", "mpdf/mpdf": "^8.1", "spatie/commonmark-highlighter": "^2.1|^3.0", "symfony/console": "^4.2|^5.0|^6.0"