-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.79 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
{
"name": "brandembassy/queue-management",
"license": "proprietary",
"autoload": {
"psr-4": {
"BE\\QueueManagement\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\BE\\QueueManagement\\": "tests"
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"psr/log": "^1.1",
"doctrine/collections": "^1.8.0 || ^2.0",
"brandembassy/datetime": "^3.0",
"nette/utils": "^3.0",
"aws/aws-sdk-php": "^3.209",
"predis/predis": "^1.1 || ^2.1.2",
"ramsey/uuid": "^4.2",
"tracy/tracy": "^2.9",
"symfony/event-dispatcher-contracts": "^3.5"
},
"require-dev": {
"brandembassy/coding-standard": "^13.0",
"brandembassy/mockery-tools": "^4.1.1",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2"
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "php -dxdebug.mode=off vendor/bin/phpstan analyse --memory-limit=-1",
"phpstan-generate-baseline": "php -dxdebug.mode=off vendor/bin/phpstan analyse --memory-limit=-1 --generate-baseline",
"phpunit": "./vendor/bin/phpunit tests --no-coverage",
"phpunit-cc": "php -dxdebug.mode=coverage ./vendor/bin/phpunit --coverage-clover=coverage.xml --log-junit=test-report.xml",
"check-rector": "vendor/bin/rector process --dry-run --ansi",
"fix-rector": "vendor/bin/rector process --ansi"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"lock": false
}
}