-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.85 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.85 KB
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
66
67
68
69
{
"name": "longing/easy-im",
"description": "汇集各大厂商的IM-SDK",
"keywords": [
"腾讯IM",
"网易IM",
"快速接入IM",
"im-sdk",
"easy-im",
"easy-im-sdk",
"sdk"
],
"license": "MIT",
"homepage": "https://github.com/TestsLing/easy-im",
"authors": [
{
"name": "hacksmile",
"email": "hacksmile@163.com"
}
],
"require": {
"php": ">=7.2",
"ext-openssl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2 || ^7.0",
"monolog/monolog": "^1.22 || ^2.0",
"pimple/pimple": "^3.0",
"psr/simple-cache": "^1.0",
"symfony/cache": "^3.3 || ^4.3 || ^5.0",
"symfony/event-dispatcher": "^4.3 || ^5.0",
"symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^5.1.5",
"symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0",
"tencent/tls-sig-api-v2": "1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"mockery/mockery": "^1.2.3",
"phpstan/phpstan": "^0.12.0",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"EasyIM\\": "src/"
},
"files": [
"src/Kernel/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"EasyTM\\Tests\\": "tests/"
}
},
"extra": {
"hooks": {
"pre-commit": "composer check-style",
"pre-push": [
"composer test",
"composer fix-style"
]
}
},
"scripts": {
"phpcs": "vendor/bin/php-cs-fixer fix",
"check-style": "php-cs-fixer fix --using-cache=no --diff --config=.php_cs --dry-run --ansi",
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit"
}
}