Skip to content

Commit d0a49ae

Browse files
authored
chore: Replace imagick dependency with inkscape (#301)
1 parent bd505b0 commit d0a49ae

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/phpunit-ci-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: php-actions/composer@v6
1616
with:
17-
php_extensions: imagick intl
17+
php_extensions: intl
1818
- name: PHPUnit Tests
1919
uses: php-actions/phpunit@v3
2020
with:
21-
php_extensions: imagick intl
21+
php_extensions: intl
2222
bootstrap: vendor/autoload.php
2323
configuration: tests/phpunit/phpunit.xml
2424
args: --testdox

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ You can refer to the following articles on the basics of Git and GitHub in case
2222

2323
- [PHP 8.1+](https://www.apachefriends.org/index.html)
2424
- [Composer](https://getcomposer.org)
25-
- [Imagick](https://www.php.net/imagick)
25+
- [Inkscape](https://inkscape.org) (for PNG rendering)
2626

2727
#### Linux
2828

2929
```bash
3030
sudo apt-get install php
3131
sudo apt-get install php-curl
3232
sudo apt-get install composer
33+
sudo apt-get install inkscape
3334
```
3435

3536
#### Windows

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,15 @@ Make sure your request is meaningful and you have tested the app locally before
159159

160160
- [PHP 8.1+](https://www.apachefriends.org/index.html)
161161
- [Composer](https://getcomposer.org)
162-
- [Imagick](https://www.php.net/imagick)
162+
- [Inkscape](https://inkscape.org) (for PNG rendering)
163163

164164
#### Linux
165165

166166
```bash
167167
sudo apt-get install php
168168
sudo apt-get install php-curl
169169
sudo apt-get install composer
170+
sudo apt-get install inkscape
170171
```
171172

172173
#### Windows

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
},
2020
"require": {
2121
"php": "^8.0",
22-
"ext-imagick": "*",
2322
"ext-intl": "*",
2423
"vlucas/phpdotenv": "^5.3"
2524
},

composer.lock

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)