-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.63 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.63 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "imbo/imbo-metadata-cache",
"type": "library",
"description": "Metadata cache event listener for Imbo",
"keywords": [
"image storage",
"image transformation",
"image metadata",
"cache"
],
"homepage": "https://imbo.io/",
"license": "MIT",
"authors": [
{
"name": "Christer Edvartsen",
"email": "cogo@starzinger.net",
"homepage": "https://github.com/christeredvartsen"
},
{
"name": "Contributors",
"homepage": "https://github.com/imbo"
}
],
"require": {
"php": ">=8.3"
},
"require-dev": {
"ext-apcu": "*",
"ext-memcached": "*",
"friendsofphp/php-cs-fixer": "^3.92",
"imbo/imbo": "^3.0",
"imbo/imbo-coding-standard": "^3.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^12.5"
},
"suggest": {
"ext-apcu": "Enables usage of the APCu cache adapter",
"ext-memcached": "Enables usage of the Memcached cache adapter"
},
"autoload": {
"psr-4": {
"Imbo\\Plugin\\MetadataCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imbo\\Plugin\\MetadataCache\\": "tests/"
}
},
"scripts": {
"ci": [
"@cs",
"@sa",
"@test"
],
"cs": "vendor/bin/php-cs-fixer check --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix --diff",
"sa": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html build/coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}