-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
68
{
"name": "kununu/projections",
"description": "Handle projections of items to cache",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"cache",
"projections",
"symfony"
],
"authors": [
{
"name": "Diogo Rocha",
"email": "diogo.rocha@kununu.com"
},
{
"name": "Hugo Gonçalves",
"email": "hugo.goncalves@kununu.com"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"ext-json": "*",
"ext-igbinary": "*",
"ext-zlib": "*",
"phpunit/phpunit": "^10.5",
"kununu/scripts": ">=4.0",
"symfony/yaml": "^6.4",
"symfony/cache": "^6.4",
"jms/serializer": "^3.28",
"symfony/serializer": "^6.4",
"symfony/property-access": "^6.4"
},
"suggest": {
"ext-igbinary": "To use IgBinary cache serializers",
"ext-zlib": "To use deflated cache serializers",
"jms/serializer": "To use JMSSerializer cache serializers",
"symfony/cache": "To use SymfonyCacheProjectionRepository",
"symfony/property-access": "To use Symfony Serializer cache serializers",
"symfony/serializer": "To use Symfony Serializer cache serializers"
},
"autoload": {
"psr-4": {
"Kununu\\Projections\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kununu\\Projections\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --no-coverage --no-logging --no-progress",
"test-coverage": "XDEBUG_MODE=coverage phpunit"
},
"scripts-descriptions": {
"test": "Run all tests",
"test-coverage": "Run all tests with coverage report"
},
"config": {
"allow-plugins": {
"kununu/scripts": true
}
}
}