-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.31 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "kununu/data-fixtures",
"description": "Load data fixtures in your application for any storage",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"database",
"data fixtures",
"Doctrine",
"Elasticsearch",
"Opensearch",
"PSR-6 Cache"
],
"authors": [
{
"name": "Hugo Gonçalves",
"email": "[email protected]"
},
{
"name": "João Alves",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"ext-json": "*"
},
"require-dev": {
"doctrine/dbal": "^3.9",
"elasticsearch/elasticsearch": "^7.1",
"kununu/scripts": ">=5.1",
"opensearch-project/opensearch-php": "^2.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5",
"psr/cache": "^2.0",
"rector/rector": "^2.0",
"symfony/http-client": "^6.4",
"symfony/http-foundation": "^6.4"
},
"suggest": {
"psr/cache": "Load fixtures for implementation of the PSR6 standard",
"doctrine/dbal": "Load fixtures using Doctrine DBAL",
"elasticsearch/elasticsearch": "Load fixtures with Elasticsearch",
"opensearch-project/opensearch-php": "Load fixtures with Openseach",
"kununu/testing-bundle": "Use this package in a Symfony application",
"symfony/http-client": "Load fixtures with mocked data for Symfony Http client",
"symfony/http-foundation": "Load fixtures with mocked data for Symfony Http client"
},
"autoload": {
"psr-4": {
"Kununu\\DataFixtures\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kununu\\DataFixtures\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --no-coverage --no-logging --no-progress",
"test-coverage": "XDEBUG_MODE=coverage phpunit --log-junit tests/.results/tests-junit.xml --coverage-clover tests/.results/tests-clover.xml --coverage-html tests/.results/html",
"phpstan": "phpstan",
"rector": "rector process --dry-run --config rector-ci.php src/ tests/"
},
"scripts-descriptions": {
"test": "Run all tests",
"test-coverage": "Run all tests with coverage report",
"rector": "Run Rector in dry-run mode with CI rules",
"phpstan": "Run PHPStan"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kununu/scripts": true
}
}
}