forked from Unleash/unleash-client-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.13 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
{
"name": "unleash/symfony-client-bundle",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"symfony/framework-bundle": "^5.0 | ^6.0",
"symfony/http-client": "^5.0 | ^6.0",
"symfony/cache": "^5.0 | ^6.0",
"nyholm/psr7": "^1.0",
"unleash/client": "^1.6",
"php": "^8.0"
},
"autoload": {
"psr-4": {
"Unleash\\Client\\Bundle\\": "src/"
}
},
"require-dev": {
"rector/rector": "^0.11.49",
"phpstan/phpstan": "^0.12.90",
"friendsofphp/php-cs-fixer": "^3.0",
"jetbrains/phpstorm-attributes": "^1.0",
"symfony/security-core": "^5.0 | ^6.0",
"symfony/expression-language": "^5.0 | ^6.0",
"twig/twig": "^3.3"
},
"suggest": {
"symfony/security-bundle": "For integration of Symfony users into Unleash context",
"symfony/expression-language": "For integration of expression language in custom properties in Unleash context"
},
"scripts": {
"fixer": "php-cs-fixer fix --verbose --allow-risky=yes",
"phpstan": "phpstan analyse --level=max src"
}
}