-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
64 lines (64 loc) · 1.95 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
{
"name": "shopware/app-bundle",
"description": "Symfony bundle to develop shopware apps easy",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "shopware AG"
}
],
"autoload": {
"psr-4": {
"Shopware\\AppBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Shopware\\AppBundle\\Test\\": "tests"
}
},
"require": {
"php": ">=8.1",
"symfony/psr-http-message-bridge": "2.* || ^7.0",
"symfony/routing": "^6.4 || ^7.0",
"shopware/app-php-sdk": ">=4.0.1",
"symfony/http-client": "^6.4 || ^7.0",
"nyholm/psr7": "^1.8"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.8",
"symfony/doctrine-bridge": "^6.4 || ^7.0",
"doctrine/orm": "^3.0",
"async-aws/async-aws-bundle": "~1.12",
"async-aws/dynamo-db": "~3.2.1",
"symfony/polyfill-uuid": "~1.31.0",
"friendsofphp/php-cs-fixer": "^3.16",
"phpstan/phpstan": "^1.10.14",
"phpunit/phpunit": "^10.1",
"symfony/phpunit-bridge": "^6.2.10 || ^6.3 || ^6.4 || ^7.0",
"infection/infection": "^0.26.21"
},
"suggest": {
"doctrine/orm": "To use Doctrine as the persistence layer",
"doctrine/doctrine-bundle": "To use Doctrine as the persistence layer",
"symfony/doctrine-bridge": "To use Doctrine as the persistence layer",
"async-aws/async-aws-bundle": "To use DynamoDB as the persistence layer",
"async-aws/dynamo-db": "To use DynamoDB as the persistence layer"
},
"scripts": {
"test": "phpunit",
"check": [
"phpunit",
"php-cs-fixer fix",
"phpstan analyse"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"php-http/discovery": true,
"infection/extension-installer": true
}
}
}