-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 3.61 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 3.61 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "teamneusta/converter-bundle",
"description": "Allows using the Converter & Populator design pattern for transformations from one universe to another",
"license": "MIT",
"type": "symfony-bundle",
"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"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"symfony/config": "^5.4 || ^6.2 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
"symfony/expression-language": "^5.4 || ^6.2 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
"symfony/property-access": "^5.4 || ^6.2 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.60",
"friendsoftwig/twigcs": "^6.5",
"jangregor/phpstan-prophecy": "^2.1",
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
"nyholm/symfony-bundle-test": "^3.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1.6",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9.5",
"qossmic/deptrac-shim": "^0.24 || ^1.0",
"symfony/console": "^5.4 || ^6.2 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.2 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0",
"symfony/test-pack": "^1.0",
"symfony/translation-contracts": "^2.5 || ^3.6",
"symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
"symfony/yaml": "^5.4 || ^6.2 || ^7.0",
"twig/twig": "^3.20"
},
"autoload": {
"psr-4": {
"Neusta\\ConverterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neusta\\ConverterBundle\\Tests\\": "tests/"
},
"classmap": [
"tests/app/TestKernel.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"cs:check": "@cs:fix --dry-run",
"cs:check:ci": "@cs:check --format=checkstyle",
"cs:fix": "php-cs-fixer fix --ansi --verbose --diff",
"deptrac:analyse": "deptrac --config-file=depfile.yaml",
"deptrac:analyse:visual": "deptrac --formatter=graphviz-html --output=deptrac.analyse-result.html --config-file=depfile.yaml",
"phpstan": "phpstan analyse --ansi --memory-limit 512M",
"phpstan:ci": "phpstan analyse --ansi --no-interaction --no-progress --error-format=github",
"tests": "phpunit",
"tests:coverage:ci": "phpunit --teamcity --coverage-cobertura .coverage/cobertura.xml",
"twig:cs": "twigcs templates/",
"yaml:lint": "yaml-lint --parse-tags config tests/Fixtures/Config"
},
"scripts-descriptions": {
"cs:check": "Checks code style (but doesn't fix anything)",
"cs:check:ci": "Checks code style and creates output in GitHub format",
"cs:fix": "Checks and fixes code style",
"deptrac:analyse": "Analyses your dependencies and follows the pre-defined rules and layers",
"deptrac:analyse:visual": "Visualizes your dependencies and follows the pre-defined rules and layers",
"phpstan": "Checks for code smells",
"phpstan:ci": "Checks for code smells and creates output in GitHub format",
"tests": "Runs all phpunit tests",
"tests:coverage:ci": "Runs all phpunit tests and creates coverage reports",
"yaml:lint": "Lints Symfony YAML config files"
}
}