-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
executable file
·65 lines (65 loc) · 2.08 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
{
"name": "unleash/client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dominik Chrastecky",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.3",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/simple-cache": "^1.0 | ^2.0 | ^3.0",
"psr/simple-cache-implementation": "^1.0 | ^2.0 | ^3.0",
"lastguest/murmurhash": "^2.1",
"psr/http-message": "^1.0 | ^2.0",
"php-http/discovery": "^1.14",
"symfony/event-dispatcher": "^5.0 | ^6.0 | ^7.0"
},
"autoload": {
"psr-4": {
"Unleash\\Client\\": "src/",
"Unleash\\Client\\PhpstanRules\\": "phpstan/"
}
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.2",
"jetbrains/phpstorm-attributes": "^1.0",
"rector/rector": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/http-client": "^5.0 | ^6.0 | ^7.0",
"nyholm/psr7": "^1.0",
"symfony/cache": "^5.0 | ^6.0 | ^7.0"
},
"autoload-dev": {
"psr-4": {
"Unleash\\Client\\Tests\\": "tests/"
}
},
"suggest": {
"guzzlehttp/guzzle": "A http client implementation (PSR-17 and PSR-18)",
"symfony/http-client": "A http client implementation (PSR-17 and PSR-18)",
"nyholm/psr7": "Needed when you use symfony/http-client",
"unleash/symfony-client-bundle": "The Symfony bundle for this library",
"symfony/event-dispatcher": "Needed when you want to react to events from Unleash"
},
"scripts": {
"fixer": "php-cs-fixer fix --verbose --allow-risky=yes",
"phpstan": "phpstan analyse --level=max src",
"phpunit": "phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}