-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.22 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
{
"name": "sylius/gmv-bundle",
"description": "Lightweight local command to calculate the Sylius instance GMV within a specific period",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
],
"autoload": {
"psr-4": {
"Sylius\\GmvBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Sylius\\GmvBundle\\": "tests/"
}
},
"require": {
"php": "^8.1",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.1",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.1",
"symfony/console": "^5.4 || ^6.4 || ^7.1",
"sylius/core-bundle": "^1.14 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"webmozart/assert": "^1.11",
"lchrusciel/api-test-case": "^5.3",
"sylius-labs/coding-standard": "^4.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-doctrine": "^1.5"
},
"extra": {
"symfony": {
"require": "^6.4"
},
"branch-alias": {
"dev-main": "1.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}