-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 2.04 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
{
"name": "teamneusta/pimcore-translation-migration-bundle",
"type": "pimcore-bundle",
"description": "Migrates Symfony translations to Pimcore",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "team neusta GmbH",
"email": "[email protected]",
"homepage": "https://www.team-neusta.de/",
"role": "Developer"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"pimcore/pimcore": "^10.5.1 || ^11.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",
"spatie/phpunit-snapshot-assertions": "^4.2",
"symfony/filesystem": "^5.4 || ^6.0",
"teamneusta/pimcore-testing-framework": "^0.12"
},
"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"
}
}