Skip to content

Commit 00b2bf6

Browse files
committed
Add strip option
1 parent 1e5b5bc commit 00b2bf6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ intervention_image:
4848
autoOrientation: true
4949
decodeAnimation: true
5050
blendingColor: 'ffffff'
51+
strip: false
5152
```
5253
5354
You can choose between the two supplied drivers `Intervention\Image\Drivers\Gd\Driver` and

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"require": {
2424
"php": "^8.1",
25-
"intervention/image": "^3.7",
25+
"intervention/image": "^3.11",
2626
"symfony/framework-bundle": "^6.4|^7"
2727
},
2828
"autoload": {

src/DependencyInjection/Configuration.php

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public function getConfigTreeBuilder(): TreeBuilder
2121
->booleanNode('autoOrientation')->defaultValue(true)->end()
2222
->booleanNode('decodeAnimation')->defaultValue(true)->end()
2323
->scalarNode('blendingColor')->defaultValue('ffffff')->end()
24+
->booleanNode('strip')->defaultValue(false)->end()
2425
->end()
2526
->end()
2627
->end();

0 commit comments

Comments
 (0)