-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (81 loc) · 2.39 KB
/
composer.json
File metadata and controls
82 lines (81 loc) · 2.39 KB
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
{
"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": "jsurman@pixelfederation.com"
},
{
"name": "Martin Fris",
"email": "mfris@pixelfederation.com"
}
],
"require": {
"php": ">=8.3",
"ackintosh/ganesha": "^4.0",
"beberlei/assert": "^3.3",
"doctrine/annotations": "^2.0",
"symfony/cache": "^7.3",
"symfony/config": "^7.3",
"symfony/dependency-injection": "^7.3",
"symfony/filesystem": "^7.3",
"symfony/http-kernel": "^7.3",
"symfony/proxy-manager-bridge": "^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"madewithlove/license-checker": "^0.10|^1.0|^2.0",
"nikic/php-parser": "^5.6",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.6",
"phpro/grumphp": "^2.17",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^12.0",
"pixelfederation/coding-standards": "^5.0",
"psalm/phar": "^6.13",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^4.0",
"symfony/flex": "^2.3",
"symfony/framework-bundle": "^7.3",
"symfony/monolog-bundle": "^3.7 || ^4.0",
"symfony/phpunit-bridge": "^7.3 || ^8.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
}
},
"scripts": {
"grumphp8.3": "grumphp run --testsuite=php8.3",
"grumphp8.4": "grumphp run --testsuite=php8.4",
"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",
"phpunit": "phpunit",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}