-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 3.12 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
80
81
82
83
84
85
{
"name": "teamneusta/elastic-search-bundle",
"type": "symfony-bundle",
"description": "Allows to search in Elasticsearch server in an object-oriented way.",
"license": "MIT",
"authors": [
{
"name": "team neusta GmbH",
"email": "info@team-neusta.de",
"homepage": "https://www.team-neusta.de/",
"role": "Developer"
},
{
"name": "Michael Albrecht",
"email": "m.albrecht@neusta.de",
"homepage": "https://www.michael-albrecht.de/",
"role": "Developer"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": "^8.1",
"jolicode/elastically": "^1.7",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"ruflin/elastica": "^7.2",
"symfony/console": "^5.0 || ^6.0",
"symfony/framework-bundle": "^5.0 || ^6.0",
"symfony/messenger": "^5.0 || ^6.0",
"symfony/property-access": "^5.0 || ^6.0",
"teamneusta/converter-bundle": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"jangregor/phpstan-prophecy": "^1.0",
"laminas/laminas-zendframework-bridge": "^1.7",
"phpspec/prophecy": "^1.15",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2.10",
"phpunit/phpunit": "^9.6",
"qossmic/deptrac-shim": "^1.0",
"teamneusta/pimcore-testing-framework": "^0.11"
},
"autoload": {
"psr-4": {
"Neusta\\ElasticSearchBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neusta\\ElasticSearchBundle\\Tests\\": "tests/"
},
"classmap": [
"tests/app/TestKernel.php"
]
},
"scripts": {
"cs:check": "@cs:fix --dry-run",
"cs:check:gitlab-ci": "php-cs-fixer fix --dry-run --ansi --verbose --diff --format=gitlab > php-cs-fixer.json",
"cs:fix": "php-cs-fixer fix --ansi --verbose --diff",
"phpstan": "phpstan analyse --ansi",
"phpstan:gitlab-ci": "phpstan analyse --ansi --no-interaction --no-progress --error-format=gitlab > phpstan-report.json",
"tests": "phpunit",
"tests:coverage:gitlab-ci": "phpunit --colors=never --coverage-text --coverage-cobertura .coverage/cobertura.xml --log-junit .coverage/junit.xml",
"deptrac:analyse": "deptrac --config-file=depfile.yaml",
"deptrac:analyse:visual": "deptrac --formatter=graphviz-html --output=deptrac.analyse-result.html --config-file=depfile.yaml"
},
"scripts-descriptions": {
"cs:check": "Checks code style (but doesn't fix anything)",
"cs:check:gitlab-ci": "Checks code style and redirects the output into a GitLab readable file",
"cs:fix": "Checks and fixes code style",
"phpstan": "Checks for code smells",
"phpstan:gitlab-ci": "Checks for code smells and redirects the output into a GitLab readable file",
"tests": "Run all phpunit tests",
"tests:coverage:gitlab-ci": "Run all phpunit tests and create coverage reports",
"deptrac:analyse": "Analyse your dependencies and follow the pre-defined rules and layers",
"deptrac:analyse:visual": "Visualize your dependencies and follow the pre-defined rules and layers"
}
}