-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
85 lines (85 loc) · 2.46 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
{
"name": "sylius/fixtures-bundle",
"type": "symfony-bundle",
"description": "Configurable fixtures for Symfony applications.",
"keywords": [
"sylius",
"fixtures",
"symfony"
],
"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.1",
"doctrine/data-fixtures": "^1.2",
"monolog/monolog": "^1.25 || ^2.1 || ^3",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.1",
"doctrine/orm": "^2.7 || ^3.0",
"matthiasnoback/symfony-config-test": "^4.2 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.2 || ^5.0",
"phpspec/phpspec": "^7.0",
"phpunit/phpunit": "^9.4",
"sylius-labs/coding-standard": "^4.0",
"rector/rector": "^1.2.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-phpunit": "^1.3"
},
"extra": {
"branch-alias": {
"dev-master": "1.8-dev"
}
},
"autoload": {
"psr-4": {
"Sylius\\Bundle\\FixturesBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Sylius\\Bundle\\FixturesBundle\\": "spec/",
"Sylius\\Bundle\\FixturesBundle\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/ecs check",
"vendor/bin/phpstan analyse"
],
"fix": [
"vendor/bin/ecs check spec src tests --fix"
],
"test": [
"vendor/bin/phpspec run --ansi --no-interaction",
"vendor/bin/phpunit --colors=always"
]
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}