Skip to content

Commit 5fc4584

Browse files
authored
refactor: remove imagick dependency (#5143)
1 parent 672574d commit 5fc4584

File tree

18 files changed

+51
-45
lines changed

18 files changed

+51
-45
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: shivammathur/setup-php@v2
3737
with:
3838
php-version: ${{ env.php-version }}
39-
extensions: imagick, redis
39+
extensions: redis
4040
coverage: none
4141
- name: Check PHP Version
4242
run: php -v

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: shivammathur/setup-php@v2
3030
with:
3131
php-version: ${{ matrix.php-version }}
32-
extensions: imagick, redis
32+
extensions: redis
3333
coverage: none
3434
- name: Check PHP Version
3535
run: php -v

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: shivammathur/setup-php@v2
4242
with:
4343
php-version: ${{ env.php-version }}
44-
extensions: imagick, redis
44+
extensions: redis
4545
coverage: none
4646
- name: Check PHP Version
4747
run: php -v

.github/workflows/migration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: shivammathur/setup-php@v2
3636
with:
3737
php-version: ${{ matrix.php-version }}
38-
extensions: imagick, redis, ${{ matrix.connection }}
38+
extensions: redis, ${{ matrix.connection }}
3939
coverage: none
4040
- name: Check PHP Version
4141
run: php -v

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
uses: shivammathur/setup-php@v2
7878
with:
7979
php-version: ${{ env.php-version }}
80-
extensions: imagick, redis
80+
extensions: redis
8181
coverage: none
8282

8383
# Composer

.github/workflows/static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: shivammathur/setup-php@v2
2424
with:
2525
php-version: ${{ env.php-version }}
26-
extensions: imagick, redis
26+
extensions: redis
2727
coverage: none
2828

2929
- name: Get Composer Cache Directory
@@ -56,7 +56,7 @@ jobs:
5656
uses: shivammathur/setup-php@v2
5757
with:
5858
php-version: ${{ env.php-version }}
59-
extensions: imagick, redis
59+
extensions: redis
6060
coverage: none
6161

6262
- name: Get Composer Cache Directory

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: shivammathur/setup-php@v2
4242
with:
4343
php-version: ${{ matrix.php-version }}
44-
extensions: imagick, redis, ${{ matrix.connection }}
44+
extensions: redis, ${{ matrix.connection }}
4545
coverage: none
4646
- name: Check PHP Version
4747
run: php -v
@@ -155,7 +155,7 @@ jobs:
155155
uses: shivammathur/setup-php@v2
156156
with:
157157
php-version: ${{ matrix.php-version }}
158-
extensions: imagick, redis, ${{ matrix.connection }}
158+
extensions: redis, ${{ matrix.connection }}
159159
coverage: xdebug
160160
- name: Check PHP Version
161161
run: php -v

.platform.app.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ runtime:
1515
- gmp
1616
- redis
1717
- sodium
18-
- imagick
1918

2019
# The hooks that will be performed when the package is deployed.
2120
hooks:

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"ext-bcmath": "*",
1414
"ext-gd": "*",
1515
"ext-gmp": "*",
16-
"ext-imagick": "*",
1716
"ext-intl": "*",
1817
"ext-redis": "*",
1918
"asbiin/laravel-webauthn": "^1.0",

composer.lock

Lines changed: 6 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)