-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (72 loc) · 1.98 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
{
"name": "keboola/messenger-bundle",
"description": "Keboola Messenger Bundle",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Keboola",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Keboola\\MessengerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\MessengerBundle\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:keboola/MessengerAzureBundle.git"
}
],
"require": {
"php": ">=8.2",
"ext-pcntl": "*",
"aymdev/messenger-azure-bundle": "dev-dsnParser",
"petitpress/gps-messenger-bundle": "^1.6",
"symfony/amazon-sqs-messenger": "^6.3",
"symfony/dependency-injection": "^6.0",
"symfony/messenger": "^6.0"
},
"require-dev": {
"keboola/coding-standard": "^15.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.6",
"sempro/phpunit-pretty-print": "^1.4",
"symfony/console": "^6.3",
"symfony/dotenv": "^6.3",
"symfony/framework-bundle": "^6.0",
"symfony/yaml": "^6.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true,
"lock": false
},
"scripts": {
"phpunit": "phpunit",
"phpstan": "phpstan analyse --no-progress -c phpstan-${APP_ENV}.neon",
"phpcs": "phpcs --extensions=php src tests",
"phpcbf": "phpcbf --extensions=php src tests",
"build": [
"@phpcs",
"@phpstan",
"@phpunit"
],
"ci": [
"@composer validate --no-check-all --strict",
"php tests/bootstrap.php",
"@build"
]
}
}