-
Notifications
You must be signed in to change notification settings - Fork 137
/
composer.json
40 lines (40 loc) · 936 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
{
"name": "pubnub/pubnub",
"type": "library",
"description": "This is the official PubNub PHP SDK repository.",
"keywords": ["api", "real-time", "realtime", "real time", "ajax", "push"],
"homepage": "http://www.pubnub.com/",
"license": "proprietary",
"version": "7.0.2",
"authors": [
{
"name": "PubNub",
"email": "[email protected]"
}
],
"scripts": {
"test": "./vendor/bin/phpunit tests/ --verbose --coverage-clover=coverage.clover"
},
"require": {
"php": "^7.4|>=8.0",
"rmccue/requests": "^2.0",
"psr/log": "^1.1|^2.0|^3.0"
},
"require-dev": {
"monolog/monolog": "^2.9 || ^3.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.8",
"behat/behat": "^3.14"
},
"autoload": {
"psr-4": {
"PubNub\\": "src/PubNub"
}
},
"autoload-dev": {
"psr-4": {
"PubNubTests\\": "tests"
}
}
}