-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 912 Bytes
/
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
{
"name": "ejtj3/nats-monitoring",
"description": "Nats monitoring api wrapper",
"autoload": {
"psr-4": {
"EJTJ3\\NatsMonitoring\\": "src/"
}
},
"authors": [
{
"name": "EJTJ3"
}
],
"autoload-dev": {
"psr-4": {
"Test\\EJTJ3\\NatsMonitoring\\": "test/"
}
},
"require": {
"php" : "^8.1",
"jms/serializer": "^3.0",
"psr/http-client": "^1.0",
"php-http/discovery": "^1.19",
"psr/http-factory": "^1.0"
},
"require-dev": {
"jms/serializer": "3.28.0",
"symfony/http-client": "6.4.*",
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.62",
"phpstan/phpstan": "^2.0",
"phpro/grumphp-shim": "^2.3",
"nyholm/psr7": "^1.8"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"phpro/grumphp-shim": true
}
},
"scripts": {
"test": "vendor/bin/phpunit test"
}
}