-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.39 KB
/
composer.json
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
{
"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": "[email protected]",
"homepage": "https://github.com/christeredvartsen"
}, {
"name": "Contributors",
"homepage": "https://github.com/imbo"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"ext-apcu": "*",
"ext-memcached": "*",
"imbo/imbo": "dev-main",
"imbo/imbo-coding-standard": "^2.0",
"phpunit/phpunit": "^10.0",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.5"
},
"suggest": {
"ext-memcached": "Enables usage of the Memcached cache adapter",
"ext-apcu": "Enables usage of the APCu cache adapter"
},
"autoload": {
"psr-4": {
"Imbo\\Plugin\\MetadataCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imbo\\Plugin\\MetadataCache\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"cs": "php-cs-fixer fix --dry-run --diff",
"sa": "vendor/bin/psalm",
"ci": [
"@test",
"@sa",
"@cs"
]
},
"config": {
"sort-packages": true
}
}