-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.53 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.53 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
{
"name": "setono/sylius-plugin",
"description": "Development dependency pack that bundles the tooling (PHPStan, PHPUnit, Rector, coding standard, …) used to build Sylius plugins. Install with composer require --dev.",
"license": "MIT",
"type": "library",
"require": {
"php": ">=8.2",
"ergebnis/composer-normalize": "^2.50",
"infection/infection": "~0.31.9",
"jangregor/phpstan-prophecy": "^2.3",
"matthiasnoback/symfony-dependency-injection-test": "^6.3",
"phpspec/prophecy-phpunit": "^2.5",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.46",
"phpstan/phpstan-doctrine": "^2.0.20",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-strict-rules": "^2.0.10",
"phpstan/phpstan-symfony": "^2.0.15",
"phpunit/phpunit": "^11.5.55",
"rector/rector": "^2.4.1",
"shipmonk/composer-dependency-analyser": "^1.8.4",
"sylius-labs/coding-standard": "^4.5"
},
"require-dev": {
"sylius/sylius": "^2.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"phpstan/extension.neon"
]
}
}
}