-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
executable file
·91 lines (91 loc) · 3.04 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "fresh/centrifugo-bundle",
"description": "Provides communication with web-socket server Centrifugo in Symfony applications.",
"keywords": ["bundle", "symfony", "centrifugo", "web socket", "web-socket", "socket", "real time"],
"homepage": "https://github.com/fre5h/CentrifugoBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Artem Henvald",
"email": "[email protected]",
"role": "Creator"
},
{
"name": "Community",
"homepage": "https://github.com/fre5h/CentrifugoBundle/graphs/contributors",
"role": "Contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/fre5h/CentrifugoBundle/issues"
},
"require": {
"php": ">=8.3",
"fresh/datetime": "^4.0",
"symfony/console": "~7.0",
"symfony/config": "~7.0",
"symfony/dependency-injection": "~7.0",
"symfony/framework-bundle": "~7.0",
"symfony/http-client": "~7.0",
"symfony/http-foundation": "~7.0",
"symfony/http-kernel": "~7.0",
"symfony/security-core": "~7.0",
"symfony/validator": "~7.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.13",
"friendsofphp/php-cs-fixer": "^v3.64",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^11.3",
"roave/security-advisories": "dev-latest",
"seec/phpunit-consecutive-params": "^1.1",
"slam/phpstan-extensions": "^6.4"
},
"autoload": {
"psr-4": {
"Fresh\\CentrifugoBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Fresh\\CentrifugoBundle\\Tests\\": "Tests/"
}
},
"scripts": {
"ci:pack": [
"@ci:composer-validate",
"@ci:psr-check",
"@ci:code-style",
"@ci:static-analysis",
"@ci:phpunit"
],
"ci:composer-validate": "@composer validate --no-check-all",
"ci:psr-check": "@composer dump-autoload --dry-run --strict-psr --optimize",
"ci:code-style": [
"vendor/bin/phpcs --standard=phpcs.xml",
"vendor/bin/php-cs-fixer fix --dry-run --config=.php-cs-fixer.php -v"
],
"ci:static-analysis": [
"XDEBUG_MODE=off vendor/bin/phpstan analyse -l 9 --no-progress -c phpstan.neon ./"
],
"ci:phpunit": [
"export XDEBUG_MODE=coverage && vendor/bin/phpunit -c phpunit.xml --coverage-clover=clover-coverage.xml",
"vendor/bin/coverage-check clover-coverage.xml 100"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
}
}