-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.65 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
{
"name": "shopsys/convertim",
"type": "library",
"description": "A Symfony bundle to integrate Convertim into Shopsys Platform.",
"keywords": ["Shopsys Platform", "SSFW", "convertim", "checkout", "integration"],
"license": "proprietary",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"autoload": {
"psr-4": {
"Shopsys\\ConvertimBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\ConvertimBundle\\": "tests/"
}
},
"require": {
"php": "^8.3",
"shopsys/form-types-bundle": "17.0.x-dev",
"shopsys/framework": "17.0.x-dev",
"shopsys/migrations": "17.0.x-dev",
"shopsys/plugin-interface": "17.0.x-dev",
"symfony/config": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/form": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/routing": "^6.4",
"symfony/translation": "^6.4",
"twig/twig": "^3.5.0"
},
"require-dev": {
"phpstan/phpstan": "^1.11.7",
"phpstan/phpstan-doctrine": "^1.4.8.",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-symfony": "^1.4.6",
"phpunit/phpunit": "^9.5.20",
"shopsys/coding-standards": "17.0.x-dev"
},
"extra": {
"symfony": {
"require": "^6.4",
"docker": false
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}