-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
90 lines (90 loc) · 3.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "setono/sylius-shop-the-look-plugin",
"description": "Create looks for your Sylius store that let your customers buy more items",
"license": "MIT",
"type": "sylius-plugin",
"require": {
"php": ">=7.4",
"doctrine/collections": "^1.6",
"doctrine/orm": "^2.7",
"knplabs/knp-menu": "^3.1",
"sylius/resource-bundle": "^1.6",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/form": "^5.4 || ^6.4",
"symfony/http-foundation": "^5.4 || ^6.4",
"symfony/intl": "^5.4 || ^6.4",
"symfony/options-resolver": "^5.4 || ^6.4",
"symfony/templating": "^5.4 || ^6.4",
"twig/twig": "^2.14 || ^3.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"friendsofphp/proxy-manager-lts": "^1.0",
"fzaninotto/faker": "^1.9",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"phpspec/phpspec": "^7.1",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"psalm/plugin-symfony": "^3.0",
"roave/security-advisories": "dev-latest",
"setono/code-quality-pack": "^2.1.2",
"sylius/sylius": "~1.7.11",
"symfony/debug-bundle": "^5.4 || ^6.4",
"symfony/dotenv": "^5.4 || ^6.4",
"symfony/web-profiler-bundle": "^5.4 || ^6.4",
"symfony/web-server-bundle": "^5.4 || ^6.4",
"symfony/webpack-encore-bundle": "^1.7"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusShopTheLookPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusShopTheLookPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"symfony/thanks": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"analyse": [
"psalm"
],
"check-style": "ecs check src/ tests/Calculator/",
"ensure-test-container-exists": "[[ -f tests/Application/var/cache/test/ApplicationTests_Setono_SyliusShopTheLookPlugin_Application_KernelTestDebugContainer.xml ]] || tests/Application/bin/console cache:warmup --env=test",
"fix-style": "ecs check src/ tests/Calculator/ --fix",
"fixtures": "(cd tests/Application && bin/console sylius:fixtures:load default -n)",
"phpspec": "phpspec run",
"phpunit": "phpunit",
"psalm": [
"@ensure-test-container-exists",
"psalm --show-info=true"
],
"psalm-baseline": [
"@ensure-test-container-exists",
"psalm --set-baseline=psalm-baseline.xml"
],
"tests": [
"@phpspec",
"@phpunit"
]
}
}