-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1011 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "woltlab/webp-exif",
"description": "Extract and embed EXIF metadata from and to WebP images",
"type": "library",
"license": "MIT",
"keywords": [
"exif",
"webp"
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-exif": "*",
"nelexa/buffer": "^1.3",
"symfony/polyfill-php84": "^1.31"
},
"require-dev": {
"phpunit/phpunit": "^12.2",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpunit/php-code-coverage": "^12.0"
},
"autoload": {
"psr-4": {
"WoltLab\\WebpExif\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WoltLabTest\\WebpExif\\": "test/"
}
},
"scripts": {
"test": "phpunit --colors=always test",
"phpstan": "phpstan"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}