-
Notifications
You must be signed in to change notification settings - Fork 155
/
composer.json
149 lines (149 loc) · 5.15 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "sylius/resource-bundle",
"type": "symfony-bundle",
"description": "Resource component for Sylius.",
"keywords": [
"resource",
"storage",
"persistence",
"sylius"
],
"homepage": "https://sylius.com",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "https://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "https://sylius.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^8.1",
"babdev/pagerfanta-bundle": "^4.4",
"doctrine/annotations": "^2.0",
"doctrine/collections": "^2.2",
"doctrine/event-manager": "^1.1 || ^2.0",
"doctrine/inflector": "^2.0",
"doctrine/persistence": "^3.3",
"gedmo/doctrine-extensions": "^3.17.1",
"sylius/registry": "^1.2",
"symfony/config": "^6.4 || ^7.1",
"symfony/deprecation-contracts": "^3.5",
"symfony/expression-language": "^6.4 || ^7.1",
"symfony/form": "^6.4 || ^7.1",
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/intl": "^6.4 || ^7.1",
"symfony/security-core": "^6.4 || ^7.1",
"symfony/security-csrf": "^6.4 || ^7.1",
"symfony/routing": "^6.4 || ^7.1",
"symfony/translation": "^6.4 || ^7.1",
"symfony/twig-bundle": "^6.4 || ^7.1",
"symfony/validator": "^6.4 || ^7.1",
"symfony/yaml": "^6.4 || ^7.1",
"webmozart/assert": "^1.11",
"willdurand/negotiation": "^3.1"
},
"replace": {
"sylius/resource": "self.version"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^2.18",
"friendsofsymfony/rest-bundle": "^3.7",
"jms/serializer-bundle": "^3.5 || ^4.0 || ^5.0",
"lchrusciel/api-test-case": "^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.2.1 || ^5.1",
"pagerfanta/pagerfanta": "^4.4",
"pamil/phpspec-skip-example-extension": "^4.2",
"phpspec/phpspec": "^7.5",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^9.6",
"rector/rector": "^0.18.2",
"sylius-labs/coding-standard": "^4.4",
"sylius/grid-bundle": "^1.13",
"symfony/console": "^6.4 || ^7.1",
"symfony/css-selector": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/dotenv": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/stopwatch": "^6.4 || ^7.1",
"symfony/uid": "^6.4 || ^7.1",
"symfony/workflow": "^6.4 || ^7.1",
"symfony/messenger": "^6.4 || ^7.1",
"symfony/serializer": "^6.4 || ^7.1",
"symfony/security-bundle": "^6.4 || ^7.1",
"twig/twig": "^3.14",
"vimeo/psalm": "^5.26",
"willdurand/hateoas-bundle": "^2.5",
"winzou/state-machine-bundle": "^0.6.2"
},
"conflict": {
"doctrine/orm": "<2.18 || ^3.0",
"doctrine/doctrine-bundle": "<2.0 || ^3.0",
"friendsofsymfony/rest-bundle": "<3.0",
"jms/serializer-bundle": "<3.5",
"pagerfanta/pagerfanta" : "<4.4",
"willdurand/hateoas-bundle": "<2.0 || ^3.0",
"winzou/state-machine-bundle": "<0.6.2",
"twig/twig": "<3.0"
},
"suggest": {
"doctrine/orm": "^2.20",
"sylius/locale": "^1.0"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": false
},
"sort-packages": true
},
"extra": {
"symfony": {
"require": "^7.1"
}
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\ResourceBundle\\": "src/Bundle/",
"Sylius\\Component\\Resource\\": "src/Component/legacy/src/",
"Sylius\\Resource\\": "src/Component/src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Sylius\\Bundle\\ResourceBundle\\": "src/Bundle/spec/",
"spec\\Sylius\\Resource\\": "src/Component/spec/",
"Sylius\\Bundle\\ResourceBundle\\Tests\\": "tests/Bundle/",
"Sylius\\Component\\Resource\\spec\\": "src/Component/legacy/spec/",
"Sylius\\Component\\Resource\\Tests\\": "src/Component/legacy/tests/",
"Sylius\\Resource\\Tests\\": "src/Component/tests/",
"App\\": "tests/Application/src/"
}
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/ecs check",
"vendor/bin/phpstan analyse --ansi --memory-limit=256M -c phpstan.neon -l max src"
],
"fix": [
"vendor/bin/ecs check --fix"
],
"test": [
"vendor/bin/phpspec run --ansi --no-interaction",
"vendor/bin/phpunit --colors=always"
]
}
}