forked from Sylius/SyliusResourceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
98 lines (97 loc) · 3.21 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
{
"name": "sylius/resource-bundle",
"type": "symfony-bundle",
"description": "Resource component for Sylius.",
"keywords": ["resource", "storage", "persistence", "sylius"],
"homepage": "http://sylius.com",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.com"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^7.2",
"doctrine/doctrine-bundle": "^1.12|^2.0",
"doctrine/persistence": "^1.3",
"friendsofsymfony/rest-bundle": "^2.1",
"jms/serializer-bundle": "^3.5",
"stof/doctrine-extensions-bundle": "^1.2",
"sylius/registry": "^1.2",
"symfony/config": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"symfony/form": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/security-csrf": "^4.4|^5.0",
"symfony/twig-bundle": "^4.4|^5.0",
"symfony/validator": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"white-october/pagerfanta-bundle": "^1.0",
"willdurand/hateoas-bundle": "^2.0",
"winzou/state-machine-bundle": "^0.3|^0.4"
},
"require-dev": {
"behat/transliterator": "dev-master",
"doctrine/orm": "^2.5",
"gedmo/doctrine-extensions": "^2.4",
"lchrusciel/api-test-case": "^4.1.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"pamil/phpspec-skip-example-extension": "^4.1",
"phpspec/phpspec": "^6.1",
"phpstan/phpstan": "0.11.19",
"phpstan/phpstan-phpunit": "0.11.2",
"phpstan/phpstan-webmozart-assert": "0.11.3",
"phpunit/phpunit": "^7.0",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"sylius-labs/coding-standard": "^3.0",
"sylius/grid-bundle": "^1.2",
"symfony/dependency-injection": "^4.4|^5.0",
"twig/twig": "^2.12|^3.0",
"vimeo/psalm": "3.8.1"
},
"suggest": {
"doctrine/orm": "^2.5",
"sylius/locale": "^1.0"
},
"replace": {
"sylius/resource": "self.version"
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\ResourceBundle\\": "src/Bundle/",
"Sylius\\Component\\Resource\\": "src/Component/"
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\Bundle\\ResourceBundle\\spec\\": "src/Bundle/spec/",
"Sylius\\Component\\Resource\\spec\\": "src/Component/spec/",
"AppBundle\\": "src/Bundle/test/src/AppBundle/"
},
"classmap": ["src/Bundle/test/app/AppKernel.php"]
},
"scripts": {
"analyse": [
"@php vendor/bin/ecs check src",
"@php vendor/bin/phpstan analyse --ansi -c phpstan.neon -l max src",
"@php vendor/bin/psalm"
],
"fix": [
"@php vendor/bin/ecs check src --fix"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
}
}
}