-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.25 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.25 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
{
"name": "teamneusta/pimcore-translation-migration-bundle",
"type": "pimcore-bundle",
"description": "Migrates Symfony translations to Pimcore",
"license": "MIT",
"authors": [
{
"name": "team neusta GmbH",
"email": "info@team-neusta.de",
"homepage": "https://www.team-neusta.de/",
"role": "Developer"
},
{
"name": "Luka Dschaak",
"email": "l.dschaak@neusta.de"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
},
"audit": {
"block-insecure": false
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"pimcore/pimcore": "^11.5 || ^12.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.0 || ^6.0",
"symfony/yaml": "^5.0 || ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.60",
"phpspec/prophecy": "^1.11",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"pimcore/admin-ui-classic-bundle": "^1.0 || ^2.0",
"spatie/phpunit-snapshot-assertions": "^4.2",
"symfony/filesystem": "^5.4 || ^6.0",
"teamneusta/pimcore-testing-framework": "^0.13"
},
"conflict": {
"presta/sitemap-bundle": "<3.1",
"symfony/proxy-manager-bridge": "<5.4"
},
"autoload": {
"psr-4": {
"Neusta\\Pimcore\\TranslationMigrationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neusta\\Pimcore\\TranslationMigrationBundle\\Tests\\": "tests/"
},
"classmap": [
"tests/app/TestKernel.php"
]
},
"scripts": {
"cs:check": "@cs:fix --dry-run",
"cs:fix": "php-cs-fixer fix --ansi --verbose --diff",
"phpstan": "phpstan analyse --ansi --no-interaction",
"phpstan:baseline": "phpstan analyse --generate-baseline",
"tests": "phpunit"
},
"scripts-descriptions": {
"cs:check": "Checks code style (but doesn't fix anything)",
"cs:fix": "Checks and fixes code style",
"phpstan": "Checks for code smells",
"phpstan:baseline": "Creates a baseline for phpstan",
"tests": "Run all phpunit tests"
}
}