This repository was archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
66 lines (66 loc) · 2.17 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
{
"name": "ergonode/exporter-shopware-6",
"type": "ergonode-module",
"description": "Ergonode - Exporter Shopware 6",
"homepage": "https://ergonode.com",
"license": "OSL-3.0",
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4",
"ergonode/attribute": "dev-main as 1.3.0-dev",
"ergonode/channel": "^1.2.0",
"ergonode/product-collection": "^1.2.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.5",
"doctrine/doctrine-bundle": "^2.3",
"ergonode/authentication": "^1.2",
"ergonode/core": "^1.2",
"ergonode/fixture": "^1.2",
"limenius/liform-bundle": "^0.17.0",
"malukenho/docheader": "^0.1.8",
"phpstan/phpstan": "^0.12.85",
"phpunit/phpunit": "^9.5",
"rregeer/phpunit-coverage-check": "^0.3.1",
"qossmic/deptrac-shim": "^0.13.0",
"sensio/framework-extra-bundle": "^5.5.0",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6",
"symfony/browser-kit": "^4.4",
"symfony/monolog-bundle": "^3.5",
"symfony/phpunit-bridge": "^4.4"
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Ergonode\\ExporterShopware6\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergonode\\ExporterShopware6\\Tests\\": "tests/"
}
},
"scripts": {
"test-build": [
"tests/bin/console doctrine:database:drop --force --if-exists",
"tests/bin/console doctrine:database:create --if-not-exists",
"tests/bin/console ergonode:migrations:migrate --no-interaction --allow-no-migration --quiet",
"tests/bin/console ergonode:fixture:load -f tests/Functional/dataFixtures/fixture.yaml -g test --no-interaction"
],
"test": [
"vendor/bin/phpstan analyse",
"vendor/bin/phpunit",
"vendor/bin/phpcs",
"vendor/bin/docheader check src tests",
"vendor/bin/deptrac"
],
"fix": [
"vendor/bin/phpcbf"
]
}
}