-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·80 lines (80 loc) · 2.37 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
{
"name": "pixelfederation/circuit-breaker-bundle",
"homepage": "https://github.com",
"type": "library",
"description": "An analogous bundle to Java's Hystrix in PHP world.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Juraj Surman",
"email": "[email protected]"
},
{
"name": "Martin Fris",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ackintosh/ganesha": "^2.0 || ^3.0",
"beberlei/assert": "^3.3",
"doctrine/annotations": "^1.12|^2.0",
"symfony/cache": "^5.4.24|^6.2",
"symfony/framework-bundle": "^5.4.24|^6.2",
"symfony/proxy-manager-bridge": "^5.4.21|^6.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"madewithlove/license-checker": "^0.10|^1.0",
"nikic/php-parser": "^4.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.1",
"phpmd/phpmd": "^2.6",
"phpro/grumphp": "^1.5",
"phpstan/phpstan": "^1.1",
"phpunit/phpunit": "^10.2",
"pixelfederation/coding-standards": "^2.1",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.4",
"symfony/flex": "^2.3",
"symfony/monolog-bundle": "^3.7",
"symfony/phpunit-bridge": "^5.4.25|^6.2",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"PixelFederation\\CircuitBreakerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PixelFederation\\CircuitBreakerBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true
}
},
"extra": {
"symfony": {
"require": "5.4.*",
"docker": false
}
},
"scripts": {
"grumphp8.1": "grumphp run --testsuite=php8.1",
"grumphp8.1-no-analyse": "grumphp run --testsuite=php8.1-no-analyse",
"grumphp8.2-no-analyse": "grumphp run --testsuite=php8.2-no-analyse",
"lic-check": "license-checker check",
"phpcs": "phpcs --standard=phpcs.ruleset.xml src",
"phpcbf": "phpcbf --standard=phpcs.ruleset.xml --extensions=php --tab-width=4 -sp src tests",
"php-cs-fixer": "php-cs-fixer --config=./.php_cs fix src",
"phpmd": "phpmd src text phpmd.ruleset.xml",
"phpstan": "phpstan analyse src --level=7",
"psalm": "psalm"
}
}