forked from Unleash/unleash-client-symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.44 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
{
"name": "unleash/symfony-client-bundle",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"symfony/framework-bundle": "^3.4",
"symfony/event-dispatcher": "^3.4",
"symfony/http-client": "^5.3.3 || ^6.2",
"symfony/cache": "^3.4",
"nyholm/psr7": "^1.0",
"unleash/client": "^2.5",
"php": "^7.4 || ^8.1"
},
"autoload": {
"psr-4": {
"Unleash\\Client\\Bundle\\": "src/"
}
},
"require-dev": {
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.18",
"jetbrains/phpstorm-attributes": "^1.0",
"symfony/security-core": "^3.4",
"symfony/expression-language": "^3.4",
"twig/twig": "^2.0",
"symfony/yaml": "^3.4"
},
"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"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": false
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/CeeeCZ/unleash-client-php.git"
}
]
}