-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
composer.json
71 lines (71 loc) · 1.67 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
66
67
68
69
70
71
{
"name": "w7corp/easywechat",
"description": "微信SDK",
"keywords": [
"easywechat",
"wechat",
"weixin",
"weixin-sdk",
"sdk"
],
"license": "MIT",
"authors": [
{
"name": "overtrue",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"ext-fileinfo": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-sodium": "*",
"ext-libxml": "*",
"ext-curl": "*",
"nyholm/psr7": "^1.5",
"nyholm/psr7-server": "^1.0",
"overtrue/socialite": "^3.5.4|^4.0.1",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"psr/http-client": "^1.0",
"symfony/cache": "^5.4|^6.0|^7.0",
"symfony/http-foundation": "^5.4|^6.0|^7.0",
"symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
"symfony/http-client": "^5.4|^6.0|^7.0",
"symfony/mime": "^5.4|^6.0|^7.0",
"symfony/polyfill-php81": "^1.25",
"thenorthmemory/xml": "^1.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.4.4",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.2",
"jetbrains/phpstorm-attributes": "^1.0",
"laravel/pint": "^1.2"
},
"autoload": {
"psr-4": {
"EasyWeChat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EasyWeChat\\Tests\\": "tests/"
}
},
"scripts": {
"post-merge": "composer install",
"phpstan": "phpstan analyse --memory-limit=-1",
"check-style": "vendor/bin/pint --test",
"fix-style": "vendor/bin/pint",
"test": "phpunit --colors"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true
}
}
}