forked from Sylius/SyliusGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
114 lines (114 loc) · 3.64 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
{
"name": "sylius/grid-bundle",
"type": "symfony-bundle",
"description": "Amazing grids with support of filters and custom fields integrated into Symfony.",
"keywords": [
"admin",
"api",
"crud",
"doctrine",
"grid",
"resource",
"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": "^7.4 || ^8.0",
"sylius-labs/polyfill-symfony-event-dispatcher": "^1.0",
"sylius/registry": "^1.5",
"symfony/config": "^4.4 || ^5.2",
"symfony/dependency-injection": "^4.4 || ^5.2",
"symfony/deprecation-contracts": "^2.2",
"symfony/event-dispatcher": "^4.4 || ^5.2",
"symfony/form": "^4.4 || ^5.2",
"symfony/framework-bundle": "^4.4 || ^5.2",
"symfony/http-kernel": "^4.4 || ^5.2",
"symfony/options-resolver": "^4.4 || ^5.2",
"symfony/property-access": "^4.4 || ^5.2",
"webmozart/assert": "^1.9"
},
"replace": {
"sylius/grid": "self.version"
},
"conflict": {
"twig/twig": "^1.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.12 || ^2.0",
"doctrine/orm": "^2.8",
"doctrine/persistence": "^1.3 || ^2.0",
"doctrine/phpcr-odm": "^1.5",
"jackalope/jackalope-doctrine-dbal": "^1.6",
"lchrusciel/api-test-case": "^5.0",
"matthiasnoback/symfony-config-test": "^4.2.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.2.1",
"pagerfanta/pagerfanta": "^1.1 || ^2.5",
"pamil/phpspec-skip-example-extension": "^4.2",
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "0.12.82",
"phpstan/phpstan-phpunit": "0.12.18",
"phpstan/phpstan-webmozart-assert": "0.12.12",
"phpunit/phpunit": "^9.5",
"sylius-labs/coding-standard": "^3.0",
"sylius/resource-bundle": "^1.8",
"symfony/console": "^4.4 || ^5.2",
"symfony/dotenv": "^4.4 || ^5.2",
"symfony/polyfill-mbstring": "<1.22.0 || >1.22.0",
"symfony/twig-bundle": "^4.4 || ^5.2",
"twig/extensions": "^1.5",
"twig/twig": "^2.12 || ^3.0",
"vimeo/psalm": "4.6.4"
},
"suggest": {
"sylius/currency-bundle": "^1.7"
},
"extra": {
"branch-alias": {
"dev-master": "1.10-dev"
}
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\GridBundle\\": "src/Bundle/",
"Sylius\\Component\\Grid\\": "src/Component/"
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\Bundle\\GridBundle\\spec\\": "src/Bundle/spec/",
"Sylius\\Component\\Grid\\spec\\": "src/Component/spec/",
"App\\": "src/Bundle/test/src/",
"AppBundle\\": "src/Bundle/test/src/AppBundle/"
}
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/ecs check src || true",
"vendor/bin/phpstan analyse --ansi -c phpstan.neon -l max src",
"vendor/bin/psalm"
],
"fix": [
"vendor/bin/ecs check src --fix"
],
"test": [
"vendor/bin/phpspec run --ansi --no-interaction",
"vendor/bin/phpunit --colors=always"
]
}
}