-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 3.38 KB
/
composer.json
File metadata and controls
94 lines (94 loc) · 3.38 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "setono/sylius-trustpilot-plugin",
"description": "Trustpilot plugin for Sylius.",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin",
"trustpilot"
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"doctrine/orm": "^2.13",
"doctrine/persistence": "^2.5",
"knplabs/knp-menu": "^3.3",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"setono/doctrine-object-manager-trait": "^1.1",
"sylius/resource-bundle": "^1.8",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/console": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/form": "^4.4 || ^5.4 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0",
"symfony/messenger": "^4.4 || ^5.4 || ^6.0",
"symfony/options-resolver": "^4.4 || ^5.4 || ^6.0",
"symfony/routing": "^4.4 || ^5.4 || ^6.0",
"symfony/translation-contracts": "^2.5 || ^3.1",
"symfony/workflow": "^4.4 || ^5.4 || ^6.0",
"twig/twig": "^2.15",
"webmozart/assert": "^1.11"
},
"require-dev": {
"api-platform/core": "^2.6",
"friendsofsymfony/oauth-server-bundle": ">2.0.0-alpha.0 ^2.0@dev",
"lexik/jwt-authentication-bundle": "^2.16",
"phpspec/phpspec": "^7.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"psalm/plugin-phpunit": "^0.17",
"psalm/plugin-symfony": "^3.1",
"roave/security-advisories": "dev-latest",
"setono/code-quality-pack": "^2.2.1",
"sylius/admin-api-bundle": "^1.11",
"sylius/sylius": "~1.10.14",
"symfony/debug-bundle": "^4.4 || ^5.4 || ^6.0",
"symfony/dotenv": "^4.4 || ^5.4 || ^6.0",
"symfony/intl": "^4.4 || ^5.4 || ^6.0",
"symfony/property-info": "^4.4 || ^5.4 || ^6.0",
"symfony/serializer": "^4.4 || ^5.4 || ^6.0",
"symfony/web-profiler-bundle": "^4.4 || ^5.4 || ^6.0",
"symfony/webpack-encore-bundle": "^1.15"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusTrustpilotPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusTrustpilotPlugin\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"symfony/thanks": false
},
"sort-packages": true
},
"scripts": {
"analyse": [
"@ensure-test-container-exists",
"psalm"
],
"behat": "vendor/bin/behat --tags='@setono_sylius_trustpilot' --no-interaction --format=progress",
"check-style": "ecs check",
"checks": [
"composer check-style",
"composer analyse"
],
"ensure-test-container-exists": "[[ -f tests/Application/var/cache/test/Tests_Setono_SyliusTrustpilotPlugin_Application_KernelTestDebugContainer.xml ]] || tests/Application/bin/console cache:warmup --env=test",
"fix-style": "ecs check --fix",
"phpspec": "phpspec run",
"phpunit": "phpunit",
"test": [
"composer phpspec",
"composer behat"
]
}
}