-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.64 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"name": "netlogix/shopware-translation-bridge",
"description": "Load storefront translations from symfony/translation provider",
"license": "MIT",
"type": "shopware-platform-plugin",
"require": {
"php": ">8.3",
"shopware/storefront": ">=6.7.1.0",
"symfony/translation": ">7.0.0"
},
"require-dev": {
"carthage-software/mago": "*",
"ergebnis/composer-normalize": "*",
"frosh/shopware-rector": "*",
"phpunit/phpunit": "^13.0.0"
},
"autoload": {
"psr-4": {
"Netlogix\\ShopwareTranslationBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Netlogix\\ShopwareTranslationBridge\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"carthage-software/mago": true,
"ergebnis/composer-normalize": true,
"symfony/runtime": false
}
},
"extra": {
"label": {
"de-DE": "Translation Bridge",
"en-GB": "Translation Bridge"
},
"shopware-plugin-class": "Netlogix\\ShopwareTranslationBridge\\ShopwareTranslationBridge"
},
"scripts": {
"apply-coding-standard": [
"@composer:normalize:fix",
"@rector:fix",
"@format:fix"
],
"composer:normalize": "@composer normalize --no-check-lock --dry-run",
"composer:normalize:fix": "@composer normalize --no-check-lock",
"format": "mago fmt --dry-run",
"format:fix": "mago fmt",
"lint": "mago lint",
"rector": "rector process --dry-run",
"rector:fix": "rector process",
"test": [
"@test:unit"
],
"test:coverage": "XDEBUG_MODE=coverage phpunit --testdox --coverage-html .coverage",
"test:unit": "phpunit --testdox --testsuite unit"
}
}