-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.47 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "findologic/shopware6-common",
"description": "Files shared among Shopware6 plugin and Shopware App",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "FINDOLOGIC Developers",
"email": "dev@findologic.com"
}
],
"require": {
"php": "^8.2",
"findologic/libflexport": "^3.1",
"monolog/monolog": "^3.4",
"vin-sw/shopware-sdk": "^2.0",
"symfony/http-foundation": "*",
"symfony/event-dispatcher": "*"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^11.1",
"symfony/cache": "*",
"symfony/routing": "*",
"symfony/translation": "*",
"symfony/validator": "*",
"doctrine/annotations": "^1.13",
"friendsofphp/php-cs-fixer": "^3.11",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"FINDOLOGIC\\Shopware6Common\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"FINDOLOGIC\\Shopware6Common\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"lint": "./vendor/bin/php-cs-fixer fix src tests --path-mode=intersection --dry-run --allow-risky=yes --verbose --config=.php-cs-fixer.dist.php --using-cache=no",
"lint-fix": "./vendor/bin/php-cs-fixer fix src tests --path-mode=intersection --allow-risky=yes --verbose --config=.php-cs-fixer.dist.php --using-cache=no"
}
}