-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 3.15 KB
/
Copy pathcomposer.json
File metadata and controls
95 lines (95 loc) · 3.15 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
95
{
"name": "sylius/theme-bundle",
"type": "symfony-bundle",
"description": "Themes management for Symfony projects.",
"keywords": [
"themes",
"theming"
],
"homepage": "https://sylius.com",
"license": "MIT",
"authors": [
{
"name": "Kamil Kokot",
"homepage": "https://kamilkokot.com"
},
{
"name": "Sylius project",
"homepage": "https://sylius.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": "^8.2",
"symfony/asset": "^6.4 || ^7.4 || ^8.0",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/filesystem": "^6.4 || ^7.4 || ^8.0",
"symfony/finder": "^6.4 || ^7.4 || ^8.0",
"symfony/form": "^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/options-resolver": "^6.4 || ^7.4 || ^8.0",
"symfony/service-contracts": "^3.0",
"symfony/translation": "^6.4 || ^7.4 || ^8.0",
"symfony/translation-contracts": "^3.0"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^5.0 || ^6.1",
"matthiasnoback/symfony-dependency-injection-test": "^5.0 || ^6.1",
"mikey179/vfsstream": "^1.6",
"phpspec/phpspec": "^7.0 || ^8.0",
"phpunit/phpunit": "^10.5 || ^11.0",
"sylius-labs/coding-standard": "^4.0.2",
"symfony/browser-kit": "^6.4 || ^7.4 || ^8.0",
"symfony/security-csrf": "^6.4 || ^7.4 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.0",
"rector/rector": "^1.0"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"branch-alias": {
"dev-master": "2.5-dev"
}
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\ThemeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Sylius\\Bundle\\ThemeBundle\\": "spec/",
"Sylius\\Bundle\\ThemeBundle\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/ecs check spec src tests",
"vendor/bin/rector process --dry-run",
"tests/Application/bin/console lint:container --env dev",
"tests/Application/bin/console lint:container --env prod"
],
"fix": [
"vendor/bin/rector process",
"vendor/bin/ecs check spec src tests --fix"
],
"test": [
"vendor/bin/phpspec run --ansi --no-interaction",
"vendor/bin/phpunit --colors=always",
"APP_ENV=test_legacy vendor/bin/phpunit --colors=always --exclude-group=none"
]
}
}